From ff9b345cb2b4d14e566ed3f518ef70badc073a4f Mon Sep 17 00:00:00 2001 From: huangpf Date: Wed, 3 Jun 2015 14:21:38 -0700 Subject: [PATCH 1/7] Add 'Write-Output' for dynamic tests --- .../ScenarioTests/VMDynamicTests.ps1 | 51 ++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 index 5541bf61779d..34493268336e 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 @@ -14,8 +14,12 @@ function get_all_vm_locations { + $st = Write-Output 'Getting all Azure location - Start'; + $locations = Get-AzureLocation | where { $_.Name -like 'Microsoft.Compute/virtualMachines' } | select -ExpandProperty Locations; + $st = Write-Output 'Getting all Azure location - End'; + return $locations; } @@ -23,8 +27,12 @@ function get_all_standard_vm_sizes { param ([string] $location) + $st = Write-Output "Getting all VM sizes in location '${location}' - Start"; + $vmsizes = Get-AzureVMSize -Location $location | where { $_.Name -like 'Standard_A*' -and $_.NumberOfCores -le 4 } | select -ExpandProperty Name; + $st = Write-Output "Getting all VM sizes in location [${location}] - End"; + return $vmsizes; } @@ -33,6 +41,8 @@ function get_hash_int_value # Reference: http://www.cse.yorku.ca/~oz/hash.html param ([string] $seedstr) + $st = Write-Output "Computing hash for '${seedstr}' - Start"; + if ($seedstr -eq $null) { $seedstr = ''; } [System.Int32]$hash = 5381; @@ -42,6 +52,10 @@ function get_hash_int_value $hash = ((($hash -shl 5) + $hash) + $c) % [System.Int32]::MaxValue; } + $st = Write-Output "Computing hash for '${seedstr}' - `$hash = ${hash}"; + + $st = Write-Output "Computing hash for '${seedstr}' - End"; + return $hash; } @@ -75,9 +89,13 @@ function get_vm_config_object { param ([string] $rgname, [string] $vmsize) + $st = Write-Output "Creating VM Config Object - Start"; + $vmname = 'vm' + $rgname; $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + $st = Write-Output "Creating VM Config Object - End"; + return $p; } @@ -90,11 +108,17 @@ function get_created_storage_account_name { param ([string] $loc, [string] $rgname) + $st = Write-Output "Creating and getting storage account for '${loc}' and '${rgname}' - Start"; + $stoname = 'sto' + $rgname; $stotype = 'Standard_GRS'; + $st = Write-Output "Creating and getting storage account for '${loc}' and '${rgname}' - '${stotype}' & '${stoname}'"; + $st = New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; $st = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + + $st = Write-Output "Creating and getting storage account for '${loc}' and '${rgname}' - End"; return $stoname; } @@ -112,6 +136,8 @@ function create_and_setup_nic_ids { param ([string] $loc, [string] $rgname, $vmconfig) + $st = Write-Output "Creating and getting NICs for '${loc}' and '${rgname}' - Start"; + $subnet = New-AzureVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; $vnet = New-AzureVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; $vnet = Get-AzureVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; @@ -158,6 +184,7 @@ function create_and_setup_nic_ids $fn_end = @' + $st = Write-Output "Creating and getting NICs for '${loc}' and '${rgname}' - End"; return $nic_ids; } @@ -174,6 +201,8 @@ function create_and_setup_vm_config_object { param ([string] $loc, [string] $rgname, [string] $vmsize) + $st = Write-Output "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - Start"; + $vmconfig = get_vm_config_object $rgname $vmsize $user = "Foo12"; @@ -183,6 +212,8 @@ function create_and_setup_vm_config_object $computerName = "cn" + $rgname; $vmconfig = Set-AzureVMOperatingSystem -VM $vmconfig -Windows -ComputerName $computerName -Credential $cred; + $st = Write-Output "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - End"; + return $vmconfig; } @@ -197,6 +228,8 @@ function setup_image_and_disks { param ([string] $loc, [string] $rgname, [string] $stoname, $vmconfig) + $st = Write-Output "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - Start"; + $osDiskName = 'osDisk'; $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; $osDiskCaching = 'ReadWrite'; @@ -211,6 +244,8 @@ function setup_image_and_disks # Do not add any data disks $vmconfig.StorageProfile.DataDisks = $null; + $st = Write-Output "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - End"; + return $vmconfig; } @@ -224,6 +259,8 @@ function Run-VMDynamicTests { param ([int] $num_total_generated_tests = 3, [string] $base_folder = '.\ScenarioTests\Generated') + $st = Write-Output 'Running VM Dynamic Tests - Start'; + [bool] $isRecordMode = $true; $testMode = Get-ComputeTestMode; if ($testMode.ToLower() -eq 'playback') @@ -231,6 +268,8 @@ function Run-VMDynamicTests $isRecordMode = $false; } + $st = Write-Output "Running VM Dynamic Tests - `$isRecordMode = $isRecordMode"; + $generated_file_names = @($null) * $num_total_generated_tests; $generated_func_names = @($null) * $num_total_generated_tests; $generated_rgrp_names = @($null) * $num_total_generated_tests; @@ -249,6 +288,8 @@ function Run-VMDynamicTests $generated_func_name = 'ps_vm_dynamic_test_func_' + $index + '_' + $rgname_str; $generated_func_names[$i] = $generated_func_name; + + $st = Write-Output "Running VM Dynamic Tests - File & Test Name #${index}: ${generated_file_name} & ${generated_func_name}"; } $locations = get_all_vm_locations; @@ -261,7 +302,8 @@ function Run-VMDynamicTests $generated_file_name = $generated_file_names[$i]; $generated_func_name = $generated_func_names[$i]; - # $st = Write-Host ('Generating Test #' + (1 + $i)); + $st = Write-Output ('Running VM Dynamic Tests - Generating Test #' + (1 + $i)); + # Generate New Dynamic Test Files $st = New-Item -Path $generated_file_name -Type File -Value '' -Force; $st = $comment_header_str | Out-File -Encoding ASCII -Append -FilePath $generated_file_name -Force; @@ -322,6 +364,8 @@ function ${generated_func_name} "@; $st = $fn_body | Out-File -Encoding ASCII -Append -FilePath $generated_file_name -Force; + + $st = Write-Output ('Running VM Dynamic Tests - Generated Function #' + (1 + $i) + ' : ' + $fn_body); } } @@ -331,6 +375,11 @@ function ${generated_func_name} $st = . "$generated_file_name"; $generated_func_name = $generated_func_names[$i]; + + $st = Write-Output ('Running VM Dynamic Tests - Invoking Function #' + (1 + $i) + ' : ' + $generated_func_name); + $st = Invoke-Expression -Command $generated_func_name; } + + $st = Write-Output 'Running VM Dynamic Tests - End'; } \ No newline at end of file From 3799fe93e07bbdb21b5558d03751ea429ad93475 Mon Sep 17 00:00:00 2001 From: huangpf Date: Wed, 3 Jun 2015 15:01:57 -0700 Subject: [PATCH 2/7] Add 'Write-Output' --- .../ScenarioTests/VMDynamicTests.ps1 | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 index 34493268336e..7b15edd1039f 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 @@ -332,6 +332,9 @@ function ${generated_func_name} `$loc = '${loc_name_str}'; `$vmsize = '${vm_size_str}'; + `$st = Write-Output 'Running Test ${generated_func_name} - Start ${rgname_str}, ${loc_name_str} & ${vm_size_str}'; + + `$st = Write-Output 'Running Test ${generated_func_name} - Creating Resource Group'; `$st = New-AzureResourceGroup -Location `$loc -Name `$rgname; `$vmconfig = create_and_setup_vm_config_object `$loc `$rgname `$vmsize; @@ -346,14 +349,20 @@ function ${generated_func_name} `$st = setup_image_and_disks `$loc `$rgname `$stoname `$vmconfig; # Virtual Machine + `$st = Write-Output 'Running Test ${generated_func_name} - Creating VM'; + `$vmname = 'vm' + `$rgname; `$st = New-AzureVM -ResourceGroupName `$rgname -Location `$loc -Name `$vmname -VM `$vmconfig; # Get VM + `$st = Write-Output 'Running Test ${generated_func_name} - Getting VM'; `$vm1 = Get-AzureVM -Name `$vmname -ResourceGroupName `$rgname; # Remove + `$st = Write-Output 'Running Test ${generated_func_name} - Removing VM'; `$st = Remove-AzureVM -Name `$vmname -ResourceGroupName `$rgname -Force; + + `$st = Write-Output 'Running Test ${generated_func_name} - End'; } finally { From 955b8ee756d96c3fc2d91f56be4c2a12ca633c46 Mon Sep 17 00:00:00 2001 From: huangpf Date: Wed, 3 Jun 2015 16:28:47 -0700 Subject: [PATCH 3/7] Use 'Write-Verbose' --- .../ScenarioTests/VMDynamicTests.ps1 | 62 +++++++++---------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 index 7b15edd1039f..aaa99f02a6db 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 @@ -14,11 +14,11 @@ function get_all_vm_locations { - $st = Write-Output 'Getting all Azure location - Start'; + $st = Write-Verbose 'Getting all Azure location - Start'; $locations = Get-AzureLocation | where { $_.Name -like 'Microsoft.Compute/virtualMachines' } | select -ExpandProperty Locations; - $st = Write-Output 'Getting all Azure location - End'; + $st = Write-Verbose 'Getting all Azure location - End'; return $locations; } @@ -27,11 +27,11 @@ function get_all_standard_vm_sizes { param ([string] $location) - $st = Write-Output "Getting all VM sizes in location '${location}' - Start"; + $st = Write-Verbose "Getting all VM sizes in location '${location}' - Start"; $vmsizes = Get-AzureVMSize -Location $location | where { $_.Name -like 'Standard_A*' -and $_.NumberOfCores -le 4 } | select -ExpandProperty Name; - $st = Write-Output "Getting all VM sizes in location [${location}] - End"; + $st = Write-Verbose "Getting all VM sizes in location [${location}] - End"; return $vmsizes; } @@ -41,7 +41,7 @@ function get_hash_int_value # Reference: http://www.cse.yorku.ca/~oz/hash.html param ([string] $seedstr) - $st = Write-Output "Computing hash for '${seedstr}' - Start"; + $st = Write-Verbose "Computing hash for '${seedstr}' - Start"; if ($seedstr -eq $null) { $seedstr = ''; } @@ -52,9 +52,9 @@ function get_hash_int_value $hash = ((($hash -shl 5) + $hash) + $c) % [System.Int32]::MaxValue; } - $st = Write-Output "Computing hash for '${seedstr}' - `$hash = ${hash}"; + $st = Write-Verbose "Computing hash for '${seedstr}' - `$hash = ${hash}"; - $st = Write-Output "Computing hash for '${seedstr}' - End"; + $st = Write-Verbose "Computing hash for '${seedstr}' - End"; return $hash; } @@ -89,12 +89,12 @@ function get_vm_config_object { param ([string] $rgname, [string] $vmsize) - $st = Write-Output "Creating VM Config Object - Start"; + $st = Write-Verbose "Creating VM Config Object - Start"; $vmname = 'vm' + $rgname; $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; - $st = Write-Output "Creating VM Config Object - End"; + $st = Write-Verbose "Creating VM Config Object - End"; return $p; } @@ -108,17 +108,17 @@ function get_created_storage_account_name { param ([string] $loc, [string] $rgname) - $st = Write-Output "Creating and getting storage account for '${loc}' and '${rgname}' - Start"; + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - Start"; $stoname = 'sto' + $rgname; $stotype = 'Standard_GRS'; - $st = Write-Output "Creating and getting storage account for '${loc}' and '${rgname}' - '${stotype}' & '${stoname}'"; + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - '${stotype}' & '${stoname}'"; $st = New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; $st = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; - $st = Write-Output "Creating and getting storage account for '${loc}' and '${rgname}' - End"; + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - End"; return $stoname; } @@ -136,7 +136,7 @@ function create_and_setup_nic_ids { param ([string] $loc, [string] $rgname, $vmconfig) - $st = Write-Output "Creating and getting NICs for '${loc}' and '${rgname}' - Start"; + $st = Write-Verbose "Creating and getting NICs for '${loc}' and '${rgname}' - Start"; $subnet = New-AzureVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; $vnet = New-AzureVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; @@ -184,7 +184,7 @@ function create_and_setup_nic_ids $fn_end = @' - $st = Write-Output "Creating and getting NICs for '${loc}' and '${rgname}' - End"; + $st = Write-Verbose "Creating and getting NICs for '${loc}' and '${rgname}' - End"; return $nic_ids; } @@ -201,7 +201,7 @@ function create_and_setup_vm_config_object { param ([string] $loc, [string] $rgname, [string] $vmsize) - $st = Write-Output "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - Start"; + $st = Write-Verbose "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - Start"; $vmconfig = get_vm_config_object $rgname $vmsize @@ -212,7 +212,7 @@ function create_and_setup_vm_config_object $computerName = "cn" + $rgname; $vmconfig = Set-AzureVMOperatingSystem -VM $vmconfig -Windows -ComputerName $computerName -Credential $cred; - $st = Write-Output "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - End"; + $st = Write-Verbose "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - End"; return $vmconfig; } @@ -228,7 +228,7 @@ function setup_image_and_disks { param ([string] $loc, [string] $rgname, [string] $stoname, $vmconfig) - $st = Write-Output "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - Start"; + $st = Write-Verbose "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - Start"; $osDiskName = 'osDisk'; $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; @@ -244,7 +244,7 @@ function setup_image_and_disks # Do not add any data disks $vmconfig.StorageProfile.DataDisks = $null; - $st = Write-Output "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - End"; + $st = Write-Verbose "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - End"; return $vmconfig; } @@ -259,7 +259,7 @@ function Run-VMDynamicTests { param ([int] $num_total_generated_tests = 3, [string] $base_folder = '.\ScenarioTests\Generated') - $st = Write-Output 'Running VM Dynamic Tests - Start'; + $st = Write-Verbose 'Running VM Dynamic Tests - Start'; [bool] $isRecordMode = $true; $testMode = Get-ComputeTestMode; @@ -268,7 +268,7 @@ function Run-VMDynamicTests $isRecordMode = $false; } - $st = Write-Output "Running VM Dynamic Tests - `$isRecordMode = $isRecordMode"; + $st = Write-Verbose "Running VM Dynamic Tests - `$isRecordMode = $isRecordMode"; $generated_file_names = @($null) * $num_total_generated_tests; $generated_func_names = @($null) * $num_total_generated_tests; @@ -289,7 +289,7 @@ function Run-VMDynamicTests $generated_func_name = 'ps_vm_dynamic_test_func_' + $index + '_' + $rgname_str; $generated_func_names[$i] = $generated_func_name; - $st = Write-Output "Running VM Dynamic Tests - File & Test Name #${index}: ${generated_file_name} & ${generated_func_name}"; + $st = Write-Verbose "Running VM Dynamic Tests - File & Test Name #${index}: ${generated_file_name} & ${generated_func_name}"; } $locations = get_all_vm_locations; @@ -302,7 +302,7 @@ function Run-VMDynamicTests $generated_file_name = $generated_file_names[$i]; $generated_func_name = $generated_func_names[$i]; - $st = Write-Output ('Running VM Dynamic Tests - Generating Test #' + (1 + $i)); + $st = Write-Verbose ('Running VM Dynamic Tests - Generating Test #' + (1 + $i)); # Generate New Dynamic Test Files $st = New-Item -Path $generated_file_name -Type File -Value '' -Force; @@ -332,9 +332,9 @@ function ${generated_func_name} `$loc = '${loc_name_str}'; `$vmsize = '${vm_size_str}'; - `$st = Write-Output 'Running Test ${generated_func_name} - Start ${rgname_str}, ${loc_name_str} & ${vm_size_str}'; + `$st = Write-Verbose 'Running Test ${generated_func_name} - Start ${rgname_str}, ${loc_name_str} & ${vm_size_str}'; - `$st = Write-Output 'Running Test ${generated_func_name} - Creating Resource Group'; + `$st = Write-Verbose 'Running Test ${generated_func_name} - Creating Resource Group'; `$st = New-AzureResourceGroup -Location `$loc -Name `$rgname; `$vmconfig = create_and_setup_vm_config_object `$loc `$rgname `$vmsize; @@ -349,20 +349,20 @@ function ${generated_func_name} `$st = setup_image_and_disks `$loc `$rgname `$stoname `$vmconfig; # Virtual Machine - `$st = Write-Output 'Running Test ${generated_func_name} - Creating VM'; + `$st = Write-Verbose 'Running Test ${generated_func_name} - Creating VM'; `$vmname = 'vm' + `$rgname; `$st = New-AzureVM -ResourceGroupName `$rgname -Location `$loc -Name `$vmname -VM `$vmconfig; # Get VM - `$st = Write-Output 'Running Test ${generated_func_name} - Getting VM'; + `$st = Write-Verbose 'Running Test ${generated_func_name} - Getting VM'; `$vm1 = Get-AzureVM -Name `$vmname -ResourceGroupName `$rgname; # Remove - `$st = Write-Output 'Running Test ${generated_func_name} - Removing VM'; + `$st = Write-Verbose 'Running Test ${generated_func_name} - Removing VM'; `$st = Remove-AzureVM -Name `$vmname -ResourceGroupName `$rgname -Force; - `$st = Write-Output 'Running Test ${generated_func_name} - End'; + `$st = Write-Verbose 'Running Test ${generated_func_name} - End'; } finally { @@ -374,7 +374,7 @@ function ${generated_func_name} "@; $st = $fn_body | Out-File -Encoding ASCII -Append -FilePath $generated_file_name -Force; - $st = Write-Output ('Running VM Dynamic Tests - Generated Function #' + (1 + $i) + ' : ' + $fn_body); + $st = Write-Verbose ('Running VM Dynamic Tests - Generated Function #' + (1 + $i) + ' : ' + $fn_body); } } @@ -385,10 +385,10 @@ function ${generated_func_name} $generated_func_name = $generated_func_names[$i]; - $st = Write-Output ('Running VM Dynamic Tests - Invoking Function #' + (1 + $i) + ' : ' + $generated_func_name); + $st = Write-Verbose ('Running VM Dynamic Tests - Invoking Function #' + (1 + $i) + ' : ' + $generated_func_name); $st = Invoke-Expression -Command $generated_func_name; } - $st = Write-Output 'Running VM Dynamic Tests - End'; + $st = Write-Verbose 'Running VM Dynamic Tests - End'; } \ No newline at end of file From 3b17d242b93d1ccd805d56d371583bc76440b484 Mon Sep 17 00:00:00 2001 From: huangpf Date: Wed, 3 Jun 2015 18:21:43 -0700 Subject: [PATCH 4/7] update --- .../Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 index aaa99f02a6db..0591dc56fe03 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 @@ -332,7 +332,7 @@ function ${generated_func_name} `$loc = '${loc_name_str}'; `$vmsize = '${vm_size_str}'; - `$st = Write-Verbose 'Running Test ${generated_func_name} - Start ${rgname_str}, ${loc_name_str} & ${vm_size_str}'; + `$st = Write-Verbose `"Running Test ${generated_func_name} - Start `${rgname}, `${loc} & `${vmsize}`"; `$st = Write-Verbose 'Running Test ${generated_func_name} - Creating Resource Group'; `$st = New-AzureResourceGroup -Location `$loc -Name `$rgname; From 93d1f0642cc34f03117b2aa7a37338e6ad921f51 Mon Sep 17 00:00:00 2001 From: huangpf Date: Wed, 3 Jun 2015 23:49:58 -0700 Subject: [PATCH 5/7] Re-record Tests --- .../Generated/VirtualMachineDynamicTest1.ps1 | 40 +- .../Generated/VirtualMachineDynamicTest2.ps1 | 40 +- .../Generated/VirtualMachineDynamicTest3.ps1 | 40 +- .../RunVMDynamicTests.json | 3362 ++++++++--------- 4 files changed, 1630 insertions(+), 1852 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest1.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest1.ps1 index f9415de13c64..45f7d3489fe9 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest1.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest1.ps1 @@ -22,9 +22,13 @@ function get_vm_config_object { param ([string] $rgname, [string] $vmsize) + $st = Write-Verbose "Creating VM Config Object - Start"; + $vmname = 'vm' + $rgname; $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + $st = Write-Verbose "Creating VM Config Object - End"; + return $p; } @@ -33,11 +37,17 @@ function get_created_storage_account_name { param ([string] $loc, [string] $rgname) + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - Start"; + $stoname = 'sto' + $rgname; $stotype = 'Standard_GRS'; + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - '${stotype}' & '${stoname}'"; + $st = New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; $st = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - End"; return $stoname; } @@ -47,6 +57,8 @@ function create_and_setup_nic_ids { param ([string] $loc, [string] $rgname, $vmconfig) + $st = Write-Verbose "Creating and getting NICs for '${loc}' and '${rgname}' - Start"; + $subnet = New-AzureVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; $vnet = New-AzureVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; $vnet = Get-AzureVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; @@ -55,6 +67,7 @@ function create_and_setup_nic_ids $nic0 = New-AzureNetworkInterface -Force -Name ('nic0' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId; $nic_ids[0] = $nic0.Id; $vmconfig = Add-AzureVMNetworkInterface -VM $vmconfig -Id $nic0.Id -Primary; + $st = Write-Verbose "Creating and getting NICs for '${loc}' and '${rgname}' - End"; return $nic_ids; } @@ -63,6 +76,8 @@ function create_and_setup_vm_config_object { param ([string] $loc, [string] $rgname, [string] $vmsize) + $st = Write-Verbose "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - Start"; + $vmconfig = get_vm_config_object $rgname $vmsize $user = "Foo12"; @@ -72,6 +87,8 @@ function create_and_setup_vm_config_object $computerName = "cn" + $rgname; $vmconfig = Set-AzureVMOperatingSystem -VM $vmconfig -Windows -ComputerName $computerName -Credential $cred; + $st = Write-Verbose "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - End"; + return $vmconfig; } @@ -80,6 +97,8 @@ function setup_image_and_disks { param ([string] $loc, [string] $rgname, [string] $stoname, $vmconfig) + $st = Write-Verbose "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - Start"; + $osDiskName = 'osDisk'; $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; $osDiskCaching = 'ReadWrite'; @@ -91,23 +110,28 @@ function setup_image_and_disks $imgRef = Get-DefaultCRPImage; $vmconfig = ($imgRef | Set-AzureVMSourceImage -VM $vmconfig); - # TODO: Remove Data Disks for now + # Do not add any data disks $vmconfig.StorageProfile.DataDisks = $null; + $st = Write-Verbose "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - End"; + return $vmconfig; } -function ps_vm_dynamic_test_func_1_pstestrg1166 +function ps_vm_dynamic_test_func_1_pstestrg2529 { # Setup - $rgname = 'pstestrg1166'; + $rgname = 'pstestrg2529'; try { - $loc = 'westeurope'; - $vmsize = 'Standard_A5'; + $loc = 'Southeast Asia'; + $vmsize = 'Standard_A2'; + $st = Write-Verbose "Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - Start ${rgname}, ${loc} & ${vmsize}"; + + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - Creating Resource Group'; $st = New-AzureResourceGroup -Location $loc -Name $rgname; $vmconfig = create_and_setup_vm_config_object $loc $rgname $vmsize; @@ -122,14 +146,20 @@ function ps_vm_dynamic_test_func_1_pstestrg1166 $st = setup_image_and_disks $loc $rgname $stoname $vmconfig; # Virtual Machine + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - Creating VM'; + $vmname = 'vm' + $rgname; $st = New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $vmconfig; # Get VM + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - Getting VM'; $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; # Remove + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - Removing VM'; $st = Remove-AzureVM -Name $vmname -ResourceGroupName $rgname -Force; + + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - End'; } finally { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest2.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest2.ps1 index 4b3ab36964ab..51a035125516 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest2.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest2.ps1 @@ -22,9 +22,13 @@ function get_vm_config_object { param ([string] $rgname, [string] $vmsize) + $st = Write-Verbose "Creating VM Config Object - Start"; + $vmname = 'vm' + $rgname; $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + $st = Write-Verbose "Creating VM Config Object - End"; + return $p; } @@ -33,11 +37,17 @@ function get_created_storage_account_name { param ([string] $loc, [string] $rgname) + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - Start"; + $stoname = 'sto' + $rgname; $stotype = 'Standard_GRS'; + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - '${stotype}' & '${stoname}'"; + $st = New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; $st = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - End"; return $stoname; } @@ -47,6 +57,8 @@ function create_and_setup_nic_ids { param ([string] $loc, [string] $rgname, $vmconfig) + $st = Write-Verbose "Creating and getting NICs for '${loc}' and '${rgname}' - Start"; + $subnet = New-AzureVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; $vnet = New-AzureVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; $vnet = Get-AzureVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; @@ -55,6 +67,7 @@ function create_and_setup_nic_ids $nic0 = New-AzureNetworkInterface -Force -Name ('nic0' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId; $nic_ids[0] = $nic0.Id; $vmconfig = Add-AzureVMNetworkInterface -VM $vmconfig -Id $nic0.Id -Primary; + $st = Write-Verbose "Creating and getting NICs for '${loc}' and '${rgname}' - End"; return $nic_ids; } @@ -63,6 +76,8 @@ function create_and_setup_vm_config_object { param ([string] $loc, [string] $rgname, [string] $vmsize) + $st = Write-Verbose "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - Start"; + $vmconfig = get_vm_config_object $rgname $vmsize $user = "Foo12"; @@ -72,6 +87,8 @@ function create_and_setup_vm_config_object $computerName = "cn" + $rgname; $vmconfig = Set-AzureVMOperatingSystem -VM $vmconfig -Windows -ComputerName $computerName -Credential $cred; + $st = Write-Verbose "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - End"; + return $vmconfig; } @@ -80,6 +97,8 @@ function setup_image_and_disks { param ([string] $loc, [string] $rgname, [string] $stoname, $vmconfig) + $st = Write-Verbose "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - Start"; + $osDiskName = 'osDisk'; $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; $osDiskCaching = 'ReadWrite'; @@ -91,23 +110,28 @@ function setup_image_and_disks $imgRef = Get-DefaultCRPImage; $vmconfig = ($imgRef | Set-AzureVMSourceImage -VM $vmconfig); - # TODO: Remove Data Disks for now + # Do not add any data disks $vmconfig.StorageProfile.DataDisks = $null; + $st = Write-Verbose "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - End"; + return $vmconfig; } -function ps_vm_dynamic_test_func_2_pstestrg7266 +function ps_vm_dynamic_test_func_2_pstestrg2816 { # Setup - $rgname = 'pstestrg7266'; + $rgname = 'pstestrg2816'; try { - $loc = 'eastasia'; - $vmsize = 'Standard_A5'; + $loc = 'West US'; + $vmsize = 'Standard_A2'; + $st = Write-Verbose "Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - Start ${rgname}, ${loc} & ${vmsize}"; + + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - Creating Resource Group'; $st = New-AzureResourceGroup -Location $loc -Name $rgname; $vmconfig = create_and_setup_vm_config_object $loc $rgname $vmsize; @@ -122,14 +146,20 @@ function ps_vm_dynamic_test_func_2_pstestrg7266 $st = setup_image_and_disks $loc $rgname $stoname $vmconfig; # Virtual Machine + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - Creating VM'; + $vmname = 'vm' + $rgname; $st = New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $vmconfig; # Get VM + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - Getting VM'; $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; # Remove + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - Removing VM'; $st = Remove-AzureVM -Name $vmname -ResourceGroupName $rgname -Force; + + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - End'; } finally { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest3.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest3.ps1 index c42ce2e6c1ed..128f72f65f95 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest3.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest3.ps1 @@ -22,9 +22,13 @@ function get_vm_config_object { param ([string] $rgname, [string] $vmsize) + $st = Write-Verbose "Creating VM Config Object - Start"; + $vmname = 'vm' + $rgname; $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + $st = Write-Verbose "Creating VM Config Object - End"; + return $p; } @@ -33,11 +37,17 @@ function get_created_storage_account_name { param ([string] $loc, [string] $rgname) + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - Start"; + $stoname = 'sto' + $rgname; $stotype = 'Standard_GRS'; + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - '${stotype}' & '${stoname}'"; + $st = New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; $st = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + + $st = Write-Verbose "Creating and getting storage account for '${loc}' and '${rgname}' - End"; return $stoname; } @@ -47,6 +57,8 @@ function create_and_setup_nic_ids { param ([string] $loc, [string] $rgname, $vmconfig) + $st = Write-Verbose "Creating and getting NICs for '${loc}' and '${rgname}' - Start"; + $subnet = New-AzureVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; $vnet = New-AzureVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; $vnet = Get-AzureVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; @@ -55,6 +67,7 @@ function create_and_setup_nic_ids $nic0 = New-AzureNetworkInterface -Force -Name ('nic0' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId; $nic_ids[0] = $nic0.Id; $vmconfig = Add-AzureVMNetworkInterface -VM $vmconfig -Id $nic0.Id -Primary; + $st = Write-Verbose "Creating and getting NICs for '${loc}' and '${rgname}' - End"; return $nic_ids; } @@ -63,6 +76,8 @@ function create_and_setup_vm_config_object { param ([string] $loc, [string] $rgname, [string] $vmsize) + $st = Write-Verbose "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - Start"; + $vmconfig = get_vm_config_object $rgname $vmsize $user = "Foo12"; @@ -72,6 +87,8 @@ function create_and_setup_vm_config_object $computerName = "cn" + $rgname; $vmconfig = Set-AzureVMOperatingSystem -VM $vmconfig -Windows -ComputerName $computerName -Credential $cred; + $st = Write-Verbose "Creating and setting up the VM config object for '${loc}', '${rgname}' and '${vmsize}' - End"; + return $vmconfig; } @@ -80,6 +97,8 @@ function setup_image_and_disks { param ([string] $loc, [string] $rgname, [string] $stoname, $vmconfig) + $st = Write-Verbose "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - Start"; + $osDiskName = 'osDisk'; $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; $osDiskCaching = 'ReadWrite'; @@ -91,23 +110,28 @@ function setup_image_and_disks $imgRef = Get-DefaultCRPImage; $vmconfig = ($imgRef | Set-AzureVMSourceImage -VM $vmconfig); - # TODO: Remove Data Disks for now + # Do not add any data disks $vmconfig.StorageProfile.DataDisks = $null; + $st = Write-Verbose "Setting up image and disks of VM config object jfor '${loc}', '${rgname}' and '${stoname}' - End"; + return $vmconfig; } -function ps_vm_dynamic_test_func_3_pstestrg7143 +function ps_vm_dynamic_test_func_3_pstestrg7743 { # Setup - $rgname = 'pstestrg7143'; + $rgname = 'pstestrg7743'; try { - $loc = 'eastus'; - $vmsize = 'Standard_A5'; + $loc = 'East Asia'; + $vmsize = 'Standard_A2'; + $st = Write-Verbose "Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - Start ${rgname}, ${loc} & ${vmsize}"; + + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - Creating Resource Group'; $st = New-AzureResourceGroup -Location $loc -Name $rgname; $vmconfig = create_and_setup_vm_config_object $loc $rgname $vmsize; @@ -122,14 +146,20 @@ function ps_vm_dynamic_test_func_3_pstestrg7143 $st = setup_image_and_disks $loc $rgname $stoname $vmconfig; # Virtual Machine + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - Creating VM'; + $vmname = 'vm' + $rgname; $st = New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $vmconfig; # Get VM + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - Getting VM'; $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; # Remove + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - Removing VM'; $st = Remove-AzureVM -Name $vmname -ResourceGroupName $rgname -Force; + + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - End'; } finally { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VMDynamicTests/RunVMDynamicTests.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VMDynamicTests/RunVMDynamicTests.json index 94fa77655a9d..9b61ae6a3ebe 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VMDynamicTests/RunVMDynamicTests.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VMDynamicTests/RunVMDynamicTests.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.batch\",\r\n \"namespace\": \"microsoft.batch\",\r\n \"resourceTypes\": [],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/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 \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\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 \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\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 \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\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 \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"South Central US\",\r\n \"East US 2\",\r\n \"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\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"South Central US\",\r\n \"East US 2\",\r\n \"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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\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 \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\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 \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central 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 \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\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 \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.batch\",\r\n \"namespace\": \"microsoft.batch\",\r\n \"resourceTypes\": [],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/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 \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\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 \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\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 \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\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 \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"South Central US\",\r\n \"East US 2\",\r\n \"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\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"South Central US\",\r\n \"East US 2\",\r\n \"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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\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 \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\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 \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central 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 \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\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 \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "51814" + "52297" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14990" ], "x-ms-request-id": [ - "38d0689d-2a00-46e3-9ff7-b9e6d8a988de" + "5e75f5e3-0a7f-49b5-b7e6-a7bcf57e67e9" ], "x-ms-correlation-request-id": [ - "38d0689d-2a00-46e3-9ff7-b9e6d8a988de" + "5e75f5e3-0a7f-49b5-b7e6-a7bcf57e67e9" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230836Z:38d0689d-2a00-46e3-9ff7-b9e6d8a988de" + "WESTUS:20150604T012849Z:5e75f5e3-0a7f-49b5-b7e6-a7bcf57e67e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:08:36 GMT" + "Thu, 04 Jun 2015 01:28:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/vmSizes?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/vmSizes?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7268" + "5867" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,7 +76,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fb2bf21c-d9b8-4f26-9559-a5f9f3ebc1ad" + "58219881-af3b-4396-8858-2a11469763ff" ], "Cache-Control": [ "no-cache" @@ -86,23 +86,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14998" ], "x-ms-correlation-request-id": [ - "16619335-3d6f-4857-83db-84c1e1890df2" + "bad9418d-cd7f-4354-babc-e025676799bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230837Z:16619335-3d6f-4857-83db-84c1e1890df2" + "WESTUS:20150604T012912Z:bad9418d-cd7f-4354-babc-e025676799bb" ], "Date": [ - "Sun, 31 May 2015 23:08:37 GMT" + "Thu, 04 Jun 2015 01:29:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/vmSizes?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -110,10 +110,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4222" + "7296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -128,7 +128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90415327-dbde-4645-89e6-48e08f245bbf" + "2866b0d3-278c-454f-ac78-4aba5b5f2baa" ], "Cache-Control": [ "no-cache" @@ -138,23 +138,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14997" ], "x-ms-correlation-request-id": [ - "5d622d77-ae67-4177-a7d4-cca3a5e2c2e7" + "a904b7d1-381b-4d30-afbd-d18fb039b218" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230838Z:5d622d77-ae67-4177-a7d4-cca3a5e2c2e7" + "WESTUS:20150604T012912Z:a904b7d1-381b-4d30-afbd-d18fb039b218" ], "Date": [ - "Sun, 31 May 2015 23:08:37 GMT" + "Thu, 04 Jun 2015 01:29:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/vmSizes?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/vmSizes?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -162,10 +162,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7268" + "4222" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,7 +180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a8f1569-e6e0-4c31-a94b-40bf6cc1fccc" + "8d4baf09-3080-4b37-9154-c1d665653649" ], "Cache-Control": [ "no-cache" @@ -190,23 +190,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14996" ], "x-ms-correlation-request-id": [ - "da598c82-e34b-463b-ad4d-0211de436d80" + "0592e52e-e098-4bcd-9af6-a98c0795d749" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230838Z:da598c82-e34b-463b-ad4d-0211de436d80" + "WESTUS:20150604T012913Z:0592e52e-e098-4bcd-9af6-a98c0795d749" ], "Date": [ - "Sun, 31 May 2015 23:08:38 GMT" + "Thu, 04 Jun 2015 01:29:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1166?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTE2Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2529?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -232,16 +232,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "14989" ], "x-ms-request-id": [ - "0e399795-3323-4123-bf9d-3086eade8ae2" + "7d59e8b5-5df8-4632-9c3c-cf54c11db18a" ], "x-ms-correlation-request-id": [ - "0e399795-3323-4123-bf9d-3086eade8ae2" + "7d59e8b5-5df8-4632-9c3c-cf54c11db18a" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230838Z:0e399795-3323-4123-bf9d-3086eade8ae2" + "WESTUS:20150604T012913Z:7d59e8b5-5df8-4632-9c3c-cf54c11db18a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,14 +250,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:08:38 GMT" + "Thu, 04 Jun 2015 01:29:12 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1166?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTE2Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2529?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -277,16 +277,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14962" ], "x-ms-request-id": [ - "676309aa-d45c-45c4-9a57-4f9ba60aa6a6" + "a8865b25-f030-4775-b366-3d0814b12973" ], "x-ms-correlation-request-id": [ - "676309aa-d45c-45c4-9a57-4f9ba60aa6a6" + "a8865b25-f030-4775-b366-3d0814b12973" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231721Z:676309aa-d45c-45c4-9a57-4f9ba60aa6a6" + "WESTUS:20150604T013811Z:a8865b25-f030-4775-b366-3d0814b12973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,31 +295,31 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:17:21 GMT" + "Thu, 04 Jun 2015 01:38:11 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1166?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTE2Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2529?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westeurope\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Southeast Asia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "32" + "36" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166\",\r\n \"name\": \"pstestrg1166\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529\",\r\n \"name\": \"pstestrg2529\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "181" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +331,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-request-id": [ - "b0f0ea3e-dc8c-45cb-a0c3-391965e6a112" + "6b2bd4b1-49fd-44f0-a8ed-ed9ebfbd7e68" ], "x-ms-correlation-request-id": [ - "b0f0ea3e-dc8c-45cb-a0c3-391965e6a112" + "6b2bd4b1-49fd-44f0-a8ed-ed9ebfbd7e68" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230840Z:b0f0ea3e-dc8c-45cb-a0c3-391965e6a112" + "WESTUS:20150604T012917Z:6b2bd4b1-49fd-44f0-a8ed-ed9ebfbd7e68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,14 +349,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:08:40 GMT" + "Thu, 04 Jun 2015 01:29:16 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -379,16 +379,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14988" ], "x-ms-request-id": [ - "d3fc1b78-0086-4e57-aabe-510e0d9ec540" + "85138222-52cc-4f91-983a-b0aac7bd3130" ], "x-ms-correlation-request-id": [ - "d3fc1b78-0086-4e57-aabe-510e0d9ec540" + "85138222-52cc-4f91-983a-b0aac7bd3130" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230840Z:d3fc1b78-0086-4e57-aabe-510e0d9ec540" + "WESTUS:20150604T012917Z:85138222-52cc-4f91-983a-b0aac7bd3130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,14 +397,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:08:40 GMT" + "Thu, 04 Jun 2015 01:29:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1166/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2529/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -430,16 +430,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:11b5b37f-a827-4c7a-ac30-77b06e1ec581" + "westus:57d17f11-7def-4b12-969a-e229767f6248" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14988" ], "x-ms-correlation-request-id": [ - "c717720e-5f13-47d3-a658-d4e12d2b90ef" + "966cd4f6-a7c3-4e94-94b9-46470f89f897" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230840Z:c717720e-5f13-47d3-a658-d4e12d2b90ef" + "WESTUS:20150604T012918Z:966cd4f6-a7c3-4e94-94b9-46470f89f897" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,25 +448,25 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:08:40 GMT" + "Thu, 04 Jun 2015 01:29:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Storage/storageAccounts/stopstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTE2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Storage/storageAccounts/stopstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "92" + "96" ], "x-ms-client-request-id": [ - "7b7aa70a-d79d-41be-aa5d-4074c8ab4447" + "a7420129-49dc-4fa5-b560-f70b962731d0" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -490,44 +490,44 @@ "25" ], "x-ms-request-id": [ - "69880394-96cf-4bcb-9fac-07b96c9c47f1" + "198afdc6-b848-44cb-a667-7b52efc02d8b" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/69880394-96cf-4bcb-9fac-07b96c9c47f1?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/198afdc6-b848-44cb-a667-7b52efc02d8b?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "97fd8664-f475-4761-b1c5-09926c601fd5" + "ae934b96-4c13-4770-83c0-2e29f794a9f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230847Z:97fd8664-f475-4761-b1c5-09926c601fd5" + "WESTUS:20150604T012926Z:ae934b96-4c13-4770-83c0-2e29f794a9f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:08:47 GMT" + "Thu, 04 Jun 2015 01:29:25 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/69880394-96cf-4bcb-9fac-07b96c9c47f1?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzY5ODgwMzk0LTk2Y2YtNGJjYi05ZmFjLTA3Yjk2YzljNDdmMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/198afdc6-b848-44cb-a667-7b52efc02d8b?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzE5OGFmZGM2LWI4NDgtNDRjYi1hNjY3LTdiNTJlZmMwMmQ4Yj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13fa2755-ff42-4eb7-bd97-d86746978c94" + "bf53c6da-d1f0-4b41-a4a3-dd949f7e1789" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -551,53 +551,53 @@ "25" ], "x-ms-request-id": [ - "dc170dd4-b256-4699-b548-5125a5214df8" + "d2a12a88-c722-4f41-a2ae-813b0ca4f04d" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/69880394-96cf-4bcb-9fac-07b96c9c47f1?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/198afdc6-b848-44cb-a667-7b52efc02d8b?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14987" ], "x-ms-correlation-request-id": [ - "807ec417-d895-491d-afe7-fd23271eccde" + "96de2645-d440-4d1d-96d3-aa97b7bf66ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230848Z:807ec417-d895-491d-afe7-fd23271eccde" + "WESTUS:20150604T012926Z:96de2645-d440-4d1d-96d3-aa97b7bf66ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:08:48 GMT" + "Thu, 04 Jun 2015 01:29:26 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/69880394-96cf-4bcb-9fac-07b96c9c47f1?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzY5ODgwMzk0LTk2Y2YtNGJjYi05ZmFjLTA3Yjk2YzljNDdmMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/198afdc6-b848-44cb-a667-7b52efc02d8b?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzE5OGFmZGM2LWI4NDgtNDRjYi1hNjY3LTdiNTJlZmMwMmQ4Yj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cd641e6-229a-4d5e-a99a-c10877bbb40d" + "3d68bb0a-9ce5-4b8d-b3d8-4b9c29ba331c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "70" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,7 +609,7 @@ "no-cache" ], "x-ms-request-id": [ - "c7343353-2c83-4d21-b0f2-846f18889664" + "00ad6a47-dd1f-468b-a78b-7404fa073e94" ], "Cache-Control": [ "no-cache" @@ -619,40 +619,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14854" + "14986" ], "x-ms-correlation-request-id": [ - "5f08bf9d-7e90-4eeb-8e52-a624c2cc326c" + "bb21ef4a-1589-4dca-b8c3-5344374cd4a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230913Z:5f08bf9d-7e90-4eeb-8e52-a624c2cc326c" + "WESTUS:20150604T012951Z:bb21ef4a-1589-4dca-b8c3-5344374cd4a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:09:13 GMT" + "Thu, 04 Jun 2015 01:29:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Storage/storageAccounts/stopstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTE2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Storage/storageAccounts/stopstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95d8f790-b6e1-4e1a-bfcb-a3c056586297" + "eeda74cc-e8f0-4356-92ed-45e81327e74d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Storage/storageAccounts/stopstestrg1166\",\r\n \"name\": \"stopstestrg1166\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg1166.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1166.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1166.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West Europe\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"North Europe\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-05-31T23:08:44.6984039Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Storage/storageAccounts/stopstestrg2529\",\r\n \"name\": \"stopstestrg2529\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg2529.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2529.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2529.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:29:22.4863625Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "685" + "688" ], "Content-Type": [ "application/json; charset=utf-8" @@ -664,7 +664,7 @@ "no-cache" ], "x-ms-request-id": [ - "a2ecec5a-18b7-4b6a-9252-c4f87b1b9df0" + "45943c07-14cf-42bc-b8f5-81bf6256bdc1" ], "Cache-Control": [ "no-cache" @@ -674,40 +674,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" + "14985" ], "x-ms-correlation-request-id": [ - "be6a11a0-1eaf-4c0e-aa4a-3a280c6482b8" + "56b802af-31ba-4be0-ad79-97036d4a59ac" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230913Z:be6a11a0-1eaf-4c0e-aa4a-3a280c6482b8" + "WESTUS:20150604T012951Z:56b802af-31ba-4be0-ad79-97036d4a59ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:09:13 GMT" + "Thu, 04 Jun 2015 01:29:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Storage/storageAccounts/stopstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTE2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Storage/storageAccounts/stopstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c68b5775-847f-4e09-a1a9-c8dad10af20f" + "8a814963-d318-485d-8be3-7fca5b6a278d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Storage/storageAccounts/stopstestrg1166\",\r\n \"name\": \"stopstestrg1166\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg1166.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1166.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1166.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West Europe\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"North Europe\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-05-31T23:08:44.6984039Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Storage/storageAccounts/stopstestrg2529\",\r\n \"name\": \"stopstestrg2529\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg2529.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2529.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2529.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:29:22.4863625Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "685" + "688" ], "Content-Type": [ "application/json; charset=utf-8" @@ -719,7 +719,7 @@ "no-cache" ], "x-ms-request-id": [ - "40139a11-48e9-4bca-afbd-79e84e64ff5b" + "2a95c2d1-be50-466b-ac29-bece78461810" ], "Cache-Control": [ "no-cache" @@ -729,26 +729,26 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14984" ], "x-ms-correlation-request-id": [ - "e729c785-9e16-403e-a7df-4e751147e666" + "c956a268-e104-4f9b-8367-ea43fafa1318" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230913Z:e729c785-9e16-403e-a7df-4e751147e666" + "WESTUS:20150604T012952Z:c956a268-e104-4f9b-8367-ea43fafa1318" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:09:13 GMT" + "Thu, 04 Jun 2015 01:29:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzExNjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI1Mjk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,13 +774,13 @@ "gateway" ], "x-ms-request-id": [ - "3a69e4d0-6aaf-4fe6-9d2a-5704a5fe646b" + "bf6735b0-0eee-48a5-94ca-1508f5a4e44f" ], "x-ms-correlation-request-id": [ - "3a69e4d0-6aaf-4fe6-9d2a-5704a5fe646b" + "bf6735b0-0eee-48a5-94ca-1508f5a4e44f" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230914Z:3a69e4d0-6aaf-4fe6-9d2a-5704a5fe646b" + "WESTUS:20150604T012953Z:bf6735b0-0eee-48a5-94ca-1508f5a4e44f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,14 +789,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:09:14 GMT" + "Thu, 04 Jun 2015 01:29:52 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzExNjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI1Mjk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,10 +804,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1166\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1166\",\r\n \"etag\": \"W/\\\"3be82fa3-e830-49cf-9623-d221c1384549\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1166\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1166/subnets/subnetpstestrg1166\",\r\n \"etag\": \"W/\\\"3be82fa3-e830-49cf-9623-d221c1384549\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529\",\r\n \"etag\": \"W/\\\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\",\r\n \"etag\": \"W/\\\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "964" + "967" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,7 +819,7 @@ "no-cache" ], "x-ms-request-id": [ - "b32c9408-ec4b-4dfa-82d1-d9ade7bf24a6" + "a1c75348-143b-4988-91e4-02ac728d8270" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,30 +828,30 @@ "no-cache" ], "ETag": [ - "W/\"3be82fa3-e830-49cf-9623-d221c1384549\"" + "W/\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14987" ], "x-ms-correlation-request-id": [ - "23c9b15c-8db6-4b52-ab56-26d9daa59c8d" + "a3871f71-30d7-4960-afba-55e6e6122c2b" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230921Z:23c9b15c-8db6-4b52-ab56-26d9daa59c8d" + "WESTUS:20150604T013000Z:a3871f71-30d7-4960-afba-55e6e6122c2b" ], "Date": [ - "Sun, 31 May 2015 23:09:20 GMT" + "Thu, 04 Jun 2015 01:30:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzExNjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI1Mjk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,10 +859,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1166\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1166\",\r\n \"etag\": \"W/\\\"3be82fa3-e830-49cf-9623-d221c1384549\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1166\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1166/subnets/subnetpstestrg1166\",\r\n \"etag\": \"W/\\\"3be82fa3-e830-49cf-9623-d221c1384549\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529\",\r\n \"etag\": \"W/\\\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\",\r\n \"etag\": \"W/\\\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "964" + "967" ], "Content-Type": [ "application/json; charset=utf-8" @@ -874,7 +874,7 @@ "no-cache" ], "x-ms-request-id": [ - "d5253e31-115d-4f8d-a5b0-cbf46d8151fb" + "0f1661b1-34ba-48c8-9653-0cdbc4ba7510" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -883,47 +883,47 @@ "no-cache" ], "ETag": [ - "W/\"3be82fa3-e830-49cf-9623-d221c1384549\"" + "W/\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14863" + "14986" ], "x-ms-correlation-request-id": [ - "e9997fec-7f8d-4989-9e9d-b48f96224cc3" + "e1c62905-80ee-44c2-903e-96ca45ae652a" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230921Z:e9997fec-7f8d-4989-9e9d-b48f96224cc3" + "WESTUS:20150604T013001Z:e1c62905-80ee-44c2-903e-96ca45ae652a" ], "Date": [ - "Sun, 31 May 2015 23:09:20 GMT" + "Thu, 04 Jun 2015 01:30:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzExNjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI1Mjk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg1166\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg1166\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westeurope\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg2529\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg2529\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"Southeast Asia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "504" + "508" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1166\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1166\",\r\n \"etag\": \"W/\\\"cb5bacd7-e45c-4c73-9cbe-dd0454450dfe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1166\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1166/subnets/subnetpstestrg1166\",\r\n \"etag\": \"W/\\\"cb5bacd7-e45c-4c73-9cbe-dd0454450dfe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529\",\r\n \"etag\": \"W/\\\"360bd121-89fc-4330-8c20-b5a88008e04f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\",\r\n \"etag\": \"W/\\\"360bd121-89fc-4330-8c20-b5a88008e04f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "962" + "965" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,10 +938,10 @@ "10" ], "x-ms-request-id": [ - "0f80dd96-e1fb-4d97-b56b-d954110e721a" + "8dd8084b-8842-4371-bbc0-28a16d5fb790" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westeurope/operations/0f80dd96-e1fb-4d97-b56b-d954110e721a?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/8dd8084b-8842-4371-bbc0-28a16d5fb790?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,20 +957,20 @@ "1198" ], "x-ms-correlation-request-id": [ - "7e1080c4-b6ba-4585-8757-3f91c5233016" + "f800c99b-d080-44bb-a95c-2af21398638a" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230920Z:7e1080c4-b6ba-4585-8757-3f91c5233016" + "WESTUS:20150604T012959Z:f800c99b-d080-44bb-a95c-2af21398638a" ], "Date": [ - "Sun, 31 May 2015 23:09:19 GMT" + "Thu, 04 Jun 2015 01:29:59 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westeurope/operations/0f80dd96-e1fb-4d97-b56b-d954110e721a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzBmODBkZDk2LWUxZmItNGQ5Ny1iNTZiLWQ5NTQxMTBlNzIxYT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/8dd8084b-8842-4371-bbc0-28a16d5fb790?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhkZDgwODRiLTg4NDItNDM3MS1iYmMwLTI4YTE2ZDVmYjc5MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -996,7 +996,7 @@ "no-cache" ], "x-ms-request-id": [ - "0054fa52-3102-4789-b7d6-9a93e62b187e" + "b2842226-cec2-4edc-a556-a10453d36077" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1009,23 +1009,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14988" ], "x-ms-correlation-request-id": [ - "0a68a0c6-53b9-4ddb-9e88-9d6bcf6cd000" + "6089c7d1-8466-41a6-9ffe-fc5fec5e7ce0" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230920Z:0a68a0c6-53b9-4ddb-9e88-9d6bcf6cd000" + "WESTUS:20150604T013000Z:6089c7d1-8466-41a6-9ffe-fc5fec5e7ce0" ], "Date": [ - "Sun, 31 May 2015 23:09:20 GMT" + "Thu, 04 Jun 2015 01:30:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMTE2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1051,13 +1051,13 @@ "gateway" ], "x-ms-request-id": [ - "06d64453-0bba-46d1-9c14-823693b0e084" + "d1d4b409-aee8-44cd-b85e-c36307a29623" ], "x-ms-correlation-request-id": [ - "06d64453-0bba-46d1-9c14-823693b0e084" + "d1d4b409-aee8-44cd-b85e-c36307a29623" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230921Z:06d64453-0bba-46d1-9c14-823693b0e084" + "WESTUS:20150604T013001Z:d1d4b409-aee8-44cd-b85e-c36307a29623" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1066,14 +1066,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:09:20 GMT" + "Thu, 04 Jun 2015 01:30:01 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMTE2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1081,10 +1081,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg1166\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1166\",\r\n \"etag\": \"W/\\\"2654fb3a-73e5-46ca-80db-f4daf6c9c3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1166/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2654fb3a-73e5-46ca-80db-f4daf6c9c3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1166/subnets/subnetpstestrg1166\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529\",\r\n \"etag\": \"W/\\\"c7bd3920-8fd3-4d84-aa6a-acaa5d594d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c7bd3920-8fd3-4d84-aa6a-acaa5d594d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1096" + "1099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1096,7 +1096,7 @@ "no-cache" ], "x-ms-request-id": [ - "bc16f145-d74b-42dc-b177-10d12164a3d2" + "057c0524-0e45-4607-a077-37aaa523a0bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1105,47 +1105,47 @@ "no-cache" ], "ETag": [ - "W/\"2654fb3a-73e5-46ca-80db-f4daf6c9c3fb\"" + "W/\"c7bd3920-8fd3-4d84-aa6a-acaa5d594d89\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14860" + "14983" ], "x-ms-correlation-request-id": [ - "ef538067-c022-4b24-9203-9fe6f9fdcf35" + "a7d371e6-d891-49f7-b472-e3ab642c59c7" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230926Z:ef538067-c022-4b24-9203-9fe6f9fdcf35" + "WESTUS:20150604T013007Z:a7d371e6-d891-49f7-b472-e3ab642c59c7" ], "Date": [ - "Sun, 31 May 2015 23:09:25 GMT" + "Thu, 04 Jun 2015 01:30:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMTE2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1166/subnets/subnetpstestrg1166\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg1166\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westeurope\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg2529\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"Southeast Asia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "651" + "655" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg1166\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1166\",\r\n \"etag\": \"W/\\\"2654fb3a-73e5-46ca-80db-f4daf6c9c3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1166/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2654fb3a-73e5-46ca-80db-f4daf6c9c3fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1166/subnets/subnetpstestrg1166\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529\",\r\n \"etag\": \"W/\\\"c7bd3920-8fd3-4d84-aa6a-acaa5d594d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c7bd3920-8fd3-4d84-aa6a-acaa5d594d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1096" + "1099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1157,10 +1157,10 @@ "no-cache" ], "x-ms-request-id": [ - "221db564-c824-4814-84a9-144890760fce" + "364b09b2-2ea1-44d9-a9b6-58e0eff89433" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westeurope/operations/221db564-c824-4814-84a9-144890760fce?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/364b09b2-2ea1-44d9-a9b6-58e0eff89433?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1176,20 +1176,20 @@ "1197" ], "x-ms-correlation-request-id": [ - "08b69edd-dc04-4057-99c4-364eb8508fdf" + "b21e4216-cce1-4005-8824-c31e2bd6f66f" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230925Z:08b69edd-dc04-4057-99c4-364eb8508fdf" + "WESTUS:20150604T013006Z:b21e4216-cce1-4005-8824-c31e2bd6f66f" ], "Date": [ - "Sun, 31 May 2015 23:09:25 GMT" + "Thu, 04 Jun 2015 01:30:06 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westeurope/operations/221db564-c824-4814-84a9-144890760fce?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzIyMWRiNTY0LWM4MjQtNDgxNC04NGE5LTE0NDg5MDc2MGZjZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/364b09b2-2ea1-44d9-a9b6-58e0eff89433?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM2NGIwOWIyLTJlYTEtNDRkOS1hOWI2LTU4ZTBlZmY4OTQzMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1215,7 +1215,7 @@ "no-cache" ], "x-ms-request-id": [ - "b1abd0e9-c510-47f7-a32a-3e2bbc47fa78" + "f2f7be23-3c29-473d-a15b-9a46e7a8c273" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1228,16 +1228,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14984" ], "x-ms-correlation-request-id": [ - "54938934-9ef9-4cd4-bac9-9b3ef32267a2" + "72da8756-5a8e-49a5-94b8-adffacbfe3d5" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230926Z:54938934-9ef9-4cd4-bac9-9b3ef32267a2" + "WESTUS:20150604T013007Z:72da8756-5a8e-49a5-94b8-adffacbfe3d5" ], "Date": [ - "Sun, 31 May 2015 23:09:25 GMT" + "Thu, 04 Jun 2015 01:30:07 GMT" ] }, "StatusCode": 200 @@ -1252,10 +1252,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "36149" + "38331" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1270,7 +1270,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aab2db5e-192b-423e-93c2-298601747fe8" + "fd73d165-db6d-4483-ab47-b75a1c4749f8" ], "Cache-Control": [ "no-cache" @@ -1280,16 +1280,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "14995" ], "x-ms-correlation-request-id": [ - "b11ebd38-bc03-4901-a615-7ba7014878bf" + "a3821927-f0b6-4783-9e6d-d3727f9e5332" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230927Z:b11ebd38-bc03-4901-a615-7ba7014878bf" + "WESTUS:20150604T013008Z:a3821927-f0b6-4783-9e6d-d3727f9e5332" ], "Date": [ - "Sun, 31 May 2015 23:09:26 GMT" + "Thu, 04 Jun 2015 01:30:07 GMT" ] }, "StatusCode": 200 @@ -1304,10 +1304,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "36149" + "38331" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1322,7 +1322,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a4e0328-c80f-417e-ac6a-e206e75ae184" + "bb99cfa2-c3ce-4894-8df5-d052b8db9420" ], "Cache-Control": [ "no-cache" @@ -1332,16 +1332,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14999" ], "x-ms-correlation-request-id": [ - "72f83800-b98a-49e0-9b8a-b499d3395e51" + "a95553a1-98c8-4860-adc5-bceffe86658b" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231944Z:72f83800-b98a-49e0-9b8a-b499d3395e51" + "CENTRALUS:20150604T014030Z:a95553a1-98c8-4860-adc5-bceffe86658b" ], "Date": [ - "Sun, 31 May 2015 23:19:43 GMT" + "Thu, 04 Jun 2015 01:40:30 GMT" ] }, "StatusCode": 200 @@ -1356,10 +1356,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "36149" + "38531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1374,7 +1374,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22b35be4-0082-43d5-ad5b-2a53a9a3c98f" + "2ffd269f-c60f-4c8f-98ad-5a9a1a643f48" ], "Cache-Control": [ "no-cache" @@ -1384,16 +1384,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "14903" ], "x-ms-correlation-request-id": [ - "70ff3ff8-e3bb-41e6-b80d-5d0f925b52b4" + "51b7ab9a-dc45-4850-8f2c-d6969f76be46" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233041Z:70ff3ff8-e3bb-41e6-b80d-5d0f925b52b4" + "WESTUS:20150604T015220Z:51b7ab9a-dc45-4850-8f2c-d6969f76be46" ], "Date": [ - "Sun, 31 May 2015 23:30:40 GMT" + "Thu, 04 Jun 2015 01:52:20 GMT" ] }, "StatusCode": 200 @@ -1426,7 +1426,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4587fe2-6dbb-4a33-adf9-9787d0fcecf1" + "f141771e-fc1a-45bd-87f9-c26ab0b99f81" ], "Cache-Control": [ "no-cache" @@ -1436,16 +1436,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "14994" ], "x-ms-correlation-request-id": [ - "0ed0f1df-1222-4281-8086-e59ddaea2709" + "dab6d819-390e-4693-8d44-16b7d3c0b97d" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230927Z:0ed0f1df-1222-4281-8086-e59ddaea2709" + "WESTUS:20150604T013008Z:dab6d819-390e-4693-8d44-16b7d3c0b97d" ], "Date": [ - "Sun, 31 May 2015 23:09:26 GMT" + "Thu, 04 Jun 2015 01:30:07 GMT" ] }, "StatusCode": 200 @@ -1478,7 +1478,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a0a825e-1719-4d66-a770-835a9e021d65" + "2e436b61-ffee-444f-81cd-4b552405baaa" ], "Cache-Control": [ "no-cache" @@ -1488,16 +1488,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "14998" ], "x-ms-correlation-request-id": [ - "3bf5b239-03fd-4a88-81ae-775973a1c2c3" + "d1fdfa35-db3b-4879-8a90-5de4c312cdbe" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231944Z:3bf5b239-03fd-4a88-81ae-775973a1c2c3" + "CENTRALUS:20150604T014031Z:d1fdfa35-db3b-4879-8a90-5de4c312cdbe" ], "Date": [ - "Sun, 31 May 2015 23:19:43 GMT" + "Thu, 04 Jun 2015 01:40:31 GMT" ] }, "StatusCode": 200 @@ -1530,7 +1530,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a22eb0a5-cc26-4219-b712-87195ea1d445" + "1ed84652-b20f-4ed0-a649-e50c9cb72d0f" ], "Cache-Control": [ "no-cache" @@ -1540,16 +1540,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14817" + "14902" ], "x-ms-correlation-request-id": [ - "e86f47eb-376c-4f07-b2c1-85dd9c1dc51d" + "228acfaf-d309-4fc6-bd73-576c28869726" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233042Z:e86f47eb-376c-4f07-b2c1-85dd9c1dc51d" + "WESTUS:20150604T015220Z:228acfaf-d309-4fc6-bd73-576c28869726" ], "Date": [ - "Sun, 31 May 2015 23:30:42 GMT" + "Thu, 04 Jun 2015 01:52:20 GMT" ] }, "StatusCode": 200 @@ -1564,10 +1564,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "835" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1582,7 +1582,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f38d543-7ca4-4d5f-b4f6-e7a868d64800" + "0cfbf062-0621-4487-850a-71cc5b1b10af" ], "Cache-Control": [ "no-cache" @@ -1592,16 +1592,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14993" ], "x-ms-correlation-request-id": [ - "3e55563c-3f76-499e-9f8e-445bd072e74b" + "7c4dbb00-e598-4a11-878c-7807d3a04a7f" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230927Z:3e55563c-3f76-499e-9f8e-445bd072e74b" + "WESTUS:20150604T013008Z:7c4dbb00-e598-4a11-878c-7807d3a04a7f" ], "Date": [ - "Sun, 31 May 2015 23:09:26 GMT" + "Thu, 04 Jun 2015 01:30:08 GMT" ] }, "StatusCode": 200 @@ -1616,10 +1616,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "835" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1634,7 +1634,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0cd39193-2cd6-4075-a249-d9f385b6c1a4" + "bb50a5f6-fe54-4485-b4c7-f795c461fc56" ], "Cache-Control": [ "no-cache" @@ -1644,16 +1644,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14854" + "14997" ], "x-ms-correlation-request-id": [ - "23754c6d-2fd2-4a71-bd2c-0a120f6fa3d0" + "102e914c-1fd1-46f4-bed4-af32acde9286" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231944Z:23754c6d-2fd2-4a71-bd2c-0a120f6fa3d0" + "CENTRALUS:20150604T014031Z:102e914c-1fd1-46f4-bed4-af32acde9286" ], "Date": [ - "Sun, 31 May 2015 23:19:44 GMT" + "Thu, 04 Jun 2015 01:40:31 GMT" ] }, "StatusCode": 200 @@ -1668,10 +1668,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "835" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1686,7 +1686,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5468779-8324-41cd-a00b-3cdb4160e63f" + "3dda7300-4d12-4b46-932a-419d318ca39b" ], "Cache-Control": [ "no-cache" @@ -1696,16 +1696,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "14901" ], "x-ms-correlation-request-id": [ - "292aa585-2ec8-474f-be8e-cae37b4cea55" + "2cfab461-bff6-427c-a2b0-0b19dde97aa0" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233042Z:292aa585-2ec8-474f-be8e-cae37b4cea55" + "WESTUS:20150604T015220Z:2cfab461-bff6-427c-a2b0-0b19dde97aa0" ], "Date": [ - "Sun, 31 May 2015 23:30:42 GMT" + "Thu, 04 Jun 2015 01:52:20 GMT" ] }, "StatusCode": 200 @@ -1720,10 +1720,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "870" + "581" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1738,7 +1738,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "47657ce1-755b-4ec3-b4cb-692150f089c6" + "cf766fac-5cc8-4968-8127-bfe14aa48785" ], "Cache-Control": [ "no-cache" @@ -1748,16 +1748,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "14992" ], "x-ms-correlation-request-id": [ - "e1a2018f-1cd1-4c79-9af3-abf0f3589a67" + "58b18d87-8596-4055-b4c3-d708966c39ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230927Z:e1a2018f-1cd1-4c79-9af3-abf0f3589a67" + "WESTUS:20150604T013008Z:58b18d87-8596-4055-b4c3-d708966c39ab" ], "Date": [ - "Sun, 31 May 2015 23:09:26 GMT" + "Thu, 04 Jun 2015 01:30:08 GMT" ] }, "StatusCode": 200 @@ -1772,10 +1772,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "870" + "581" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1790,7 +1790,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71cc82a8-190f-4e7c-a10b-28e3f92d4fe1" + "54c34997-36a7-4bf9-890f-55dc62887a3f" ], "Cache-Control": [ "no-cache" @@ -1800,16 +1800,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" + "14996" ], "x-ms-correlation-request-id": [ - "d28504e4-7843-4dfd-87bd-4fc2fbc20219" + "aabb816b-7579-45b5-9a46-f59ba2bf28ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231945Z:d28504e4-7843-4dfd-87bd-4fc2fbc20219" + "CENTRALUS:20150604T014031Z:aabb816b-7579-45b5-9a46-f59ba2bf28ef" ], "Date": [ - "Sun, 31 May 2015 23:19:44 GMT" + "Thu, 04 Jun 2015 01:40:31 GMT" ] }, "StatusCode": 200 @@ -1824,10 +1824,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "870" + "581" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1842,7 +1842,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4decf0a-f38a-4abd-9e1a-4bb95ab438c8" + "cc412670-0e4f-4d01-80c0-192b02f7c472" ], "Cache-Control": [ "no-cache" @@ -1852,23 +1852,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14815" + "14900" ], "x-ms-correlation-request-id": [ - "8d99538b-eec5-4528-b3db-806baf2eb4fa" + "e4402371-a88d-41d3-b5b2-ad2795c78cf9" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233042Z:8d99538b-eec5-4528-b3db-806baf2eb4fa" + "WESTUS:20150604T015221Z:e4402371-a88d-41d3-b5b2-ad2795c78cf9" ], "Date": [ - "Sun, 31 May 2015 23:30:42 GMT" + "Thu, 04 Jun 2015 01:52:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1876,7 +1876,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1894,7 +1894,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ffb734a4-b03a-45e3-9be9-a5c4c6d9cb5b" + "7355376d-cf36-4c72-a1fd-43ab0d4030b9" ], "Cache-Control": [ "no-cache" @@ -1904,23 +1904,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14991" ], "x-ms-correlation-request-id": [ - "a432d015-7b9e-405b-8d5d-b5f4255d43a8" + "18a00fc1-1ce5-407a-a590-936958e34547" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230927Z:a432d015-7b9e-405b-8d5d-b5f4255d43a8" + "WESTUS:20150604T013008Z:18a00fc1-1ce5-407a-a590-936958e34547" ], "Date": [ - "Sun, 31 May 2015 23:09:26 GMT" + "Thu, 04 Jun 2015 01:30:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1928,7 +1928,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1946,7 +1946,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be9443f0-8478-4f34-b96d-7065ccf1b446" + "87964f0b-c84d-4c5f-939f-83d4eeb2cb53" ], "Cache-Control": [ "no-cache" @@ -1956,23 +1956,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14995" ], "x-ms-correlation-request-id": [ - "c4b81521-a245-4dba-b463-2bc9f80feb82" + "b012fd62-5d1d-4687-bdcc-b6037b426670" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231945Z:c4b81521-a245-4dba-b463-2bc9f80feb82" + "CENTRALUS:20150604T014032Z:b012fd62-5d1d-4687-bdcc-b6037b426670" ], "Date": [ - "Sun, 31 May 2015 23:19:44 GMT" + "Thu, 04 Jun 2015 01:40:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1980,7 +1980,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1998,7 +1998,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e50a40c0-fc33-4303-94b6-e40483ff64db" + "5b5856a4-e848-45e1-81c3-d206bd5a7a56" ], "Cache-Control": [ "no-cache" @@ -2008,40 +2008,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14814" + "14899" ], "x-ms-correlation-request-id": [ - "dd36b6fa-6b5c-4176-8035-8c03cbad5614" + "5c225e7a-1183-4c5b-9681-878e29e938f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233042Z:dd36b6fa-6b5c-4176-8035-8c03cbad5614" + "WESTUS:20150604T015221Z:5c225e7a-1183-4c5b-9681-878e29e938f6" ], "Date": [ - "Sun, 31 May 2015 23:30:42 GMT" + "Thu, 04 Jun 2015 01:52:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Compute/virtualMachines/vmpstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcxMTY2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Compute/virtualMachines/vmpstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyNTI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A5\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg1166.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg1166\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg1166\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1166\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg1166\",\r\n \"location\": \"westeurope\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2529.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2529\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg2529\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg2529\",\r\n \"location\": \"Southeast Asia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1109" + "1113" ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A5\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg1166.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg1166\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1166\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Compute/virtualMachines/vmpstestrg1166\",\r\n \"name\": \"vmpstestrg1166\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westeurope\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2529.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2529\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Compute/virtualMachines/vmpstestrg2529\",\r\n \"name\": \"vmpstestrg2529\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1362" + "1365" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2053,13 +2053,13 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d264a6e-578e-4d4a-ab68-526a66c6c54a" + "9f400291-95c5-4b32-9998-7c3d8fe29155" ], "Cache-Control": [ "no-cache" @@ -2072,228 +2072,20 @@ "1199" ], "x-ms-correlation-request-id": [ - "363e6657-48dc-42bd-961b-f87a7346456c" + "ae6af995-f369-45cd-a626-ac9562ac67ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T230934Z:363e6657-48dc-42bd-961b-f87a7346456c" + "WESTUS:20150604T013016Z:ae6af995-f369-45cd-a626-ac9562ac67ad" ], "Date": [ - "Sun, 31 May 2015 23:09:34 GMT" + "Thu, 04 Jun 2015 01:30:15 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "2dec999d-f227-4d1f-9655-d1f174663043" - ], - "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": [ - "a73047f3-9129-45b4-ab86-b520ad3ad2f8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150531T230935Z:a73047f3-9129-45b4-ab86-b520ad3ad2f8" - ], - "Date": [ - "Sun, 31 May 2015 23:09:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "9b5d28eb-ea5e-49ca-8a8d-c73502af1caf" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" - ], - "x-ms-correlation-request-id": [ - "d8ae86a4-34b4-4bc8-9a80-3c913a4a7239" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150531T231006Z:d8ae86a4-34b4-4bc8-9a80-3c913a4a7239" - ], - "Date": [ - "Sun, 31 May 2015 23:10:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "82f4c7a6-333b-4d80-9864-7b68ee3bbc57" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" - ], - "x-ms-correlation-request-id": [ - "1190ed86-88ab-46c2-8bce-ff669021070c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150531T231036Z:1190ed86-88ab-46c2-8bce-ff669021070c" - ], - "Date": [ - "Sun, 31 May 2015 23:10:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "2b933770-1693-4def-97be-6f4fa2719537" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" - ], - "x-ms-correlation-request-id": [ - "71fb6cd6-d991-4112-8e81-31fc2de21e68" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150531T231107Z:71fb6cd6-d991-4112-8e81-31fc2de21e68" - ], - "Date": [ - "Sun, 31 May 2015 23:11:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2301,7 +2093,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2319,7 +2111,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a89d7687-6f62-4d61-a311-de34db792782" + "b5503604-7a14-4f9a-a4ed-05798358bf0f" ], "Cache-Control": [ "no-cache" @@ -2329,23 +2121,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14990" ], "x-ms-correlation-request-id": [ - "816b803f-4ead-4087-a879-6b9b1c2df070" + "c7781496-cdd0-4575-b47c-54e70fcbbb2b" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231138Z:816b803f-4ead-4087-a879-6b9b1c2df070" + "WESTUS:20150604T013038Z:c7781496-cdd0-4575-b47c-54e70fcbbb2b" ], "Date": [ - "Sun, 31 May 2015 23:11:37 GMT" + "Thu, 04 Jun 2015 01:30:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2353,7 +2145,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2371,7 +2163,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ac9cdad-3514-4fb6-b4c0-5ad1dc957e57" + "372278db-2c7e-4154-80c5-2db1a8f0e3e3" ], "Cache-Control": [ "no-cache" @@ -2381,23 +2173,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14989" ], "x-ms-correlation-request-id": [ - "09f4f5ea-30e5-4155-9d67-075bc5b04d3b" + "2c71c333-b3f7-4bf2-83fb-16f98707d6f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231208Z:09f4f5ea-30e5-4155-9d67-075bc5b04d3b" + "WESTUS:20150604T013109Z:2c71c333-b3f7-4bf2-83fb-16f98707d6f3" ], "Date": [ - "Sun, 31 May 2015 23:12:08 GMT" + "Thu, 04 Jun 2015 01:31:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2405,7 +2197,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2423,7 +2215,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10a12cb2-f4e9-4e6a-9a7e-ac3a388364c2" + "540305a7-ab7f-47dd-a89d-7a1e23d3a685" ], "Cache-Control": [ "no-cache" @@ -2433,23 +2225,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14981" ], "x-ms-correlation-request-id": [ - "0645b404-5f4d-4590-bd62-da4c227da55e" + "d9c60dc3-01c3-432c-8da7-d4b22979a7fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231239Z:0645b404-5f4d-4590-bd62-da4c227da55e" + "WESTUS:20150604T013200Z:d9c60dc3-01c3-432c-8da7-d4b22979a7fc" ], "Date": [ - "Sun, 31 May 2015 23:12:38 GMT" + "Thu, 04 Jun 2015 01:32:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2457,7 +2249,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2475,7 +2267,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25e816fc-4269-47e5-9726-9005bc6b23f4" + "94b4c40f-cd98-4e03-abbe-fd34b9351207" ], "Cache-Control": [ "no-cache" @@ -2485,23 +2277,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14881" + "14974" ], "x-ms-correlation-request-id": [ - "c35f581d-e47a-4426-a676-ac312c74d409" + "6846e7cd-108d-4e9c-87e2-75a2e4b49954" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231310Z:c35f581d-e47a-4426-a676-ac312c74d409" + "WESTUS:20150604T013231Z:6846e7cd-108d-4e9c-87e2-75a2e4b49954" ], "Date": [ - "Sun, 31 May 2015 23:13:10 GMT" + "Thu, 04 Jun 2015 01:32:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2509,7 +2301,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2527,7 +2319,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b01b7da0-ad9d-4f65-acfc-b33890aa669f" + "eac8209f-e4b8-45b4-b19c-8804d143aa97" ], "Cache-Control": [ "no-cache" @@ -2537,23 +2329,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14879" + "14971" ], "x-ms-correlation-request-id": [ - "e27c750a-63ec-470b-92e6-cb02b325cde5" + "61a6f83d-8545-4070-9a40-15ab1508c4a6" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231340Z:e27c750a-63ec-470b-92e6-cb02b325cde5" + "WESTUS:20150604T013323Z:61a6f83d-8545-4070-9a40-15ab1508c4a6" ], "Date": [ - "Sun, 31 May 2015 23:13:40 GMT" + "Thu, 04 Jun 2015 01:33:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2561,7 +2353,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2579,7 +2371,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25402506-cc36-402f-90a9-2d5a99215161" + "f6454936-078c-44de-922c-0db093712335" ], "Cache-Control": [ "no-cache" @@ -2589,23 +2381,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "14967" ], "x-ms-correlation-request-id": [ - "dd236a3a-1d2f-4b83-adeb-3baf694190df" + "ddb2f7fe-02fc-4081-8523-b33059d2e9a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231411Z:dd236a3a-1d2f-4b83-adeb-3baf694190df" + "WESTUS:20150604T013415Z:ddb2f7fe-02fc-4081-8523-b33059d2e9a5" ], "Date": [ - "Sun, 31 May 2015 23:14:11 GMT" + "Thu, 04 Jun 2015 01:34:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2613,7 +2405,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2631,7 +2423,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93340b58-80f7-46e4-92d9-ae0091ef368e" + "8a0c2e33-a87f-40a3-afdd-e00e2fac55d5" ], "Cache-Control": [ "no-cache" @@ -2641,23 +2433,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14876" + "14964" ], "x-ms-correlation-request-id": [ - "af5cf484-8005-430a-b1cc-1196dce74c47" + "67bac119-e154-462d-af96-7c185babdb0e" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231442Z:af5cf484-8005-430a-b1cc-1196dce74c47" + "WESTUS:20150604T013446Z:67bac119-e154-462d-af96-7c185babdb0e" ], "Date": [ - "Sun, 31 May 2015 23:14:41 GMT" + "Thu, 04 Jun 2015 01:34:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6d264a6e-578e-4d4a-ab68-526a66c6c54a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzZkMjY0YTZlLTU3OGUtNGQ0YS1hYjY4LTUyNmE2NmM2YzU0YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2665,10 +2457,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6d264a6e-578e-4d4a-ab68-526a66c6c54a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-05-31T16:09:31.0503463-07:00\",\r\n \"endTime\": \"2015-05-31T16:14:52.771211-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\",\r\n \"endTime\": \"2015-06-03T18:35:09.3601835-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2683,7 +2475,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "087c97e6-f2c8-4484-9468-dfd1fbc33394" + "9e321db3-6550-47fc-953d-fa74c28e515f" ], "Cache-Control": [ "no-cache" @@ -2693,23 +2485,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "14961" ], "x-ms-correlation-request-id": [ - "d9200883-e36f-4ce5-8583-fbb174ef4eda" + "b1cfd50b-e067-435c-b5c0-f38e9505dbab" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231512Z:d9200883-e36f-4ce5-8583-fbb174ef4eda" + "WESTUS:20150604T013517Z:b1cfd50b-e067-435c-b5c0-f38e9505dbab" ], "Date": [ - "Sun, 31 May 2015 23:15:12 GMT" + "Thu, 04 Jun 2015 01:35:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Compute/virtualMachines/vmpstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcxMTY2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Compute/virtualMachines/vmpstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyNTI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2717,10 +2509,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A5\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg1166.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg1166\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1166\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Compute/virtualMachines/vmpstestrg1166\",\r\n \"name\": \"vmpstestrg1166\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westeurope\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2529.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2529\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Compute/virtualMachines/vmpstestrg2529\",\r\n \"name\": \"vmpstestrg2529\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1363" + "1366" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2735,7 +2527,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "07de7a66-9241-4b3e-9d46-8318e3f29261" + "29af66b6-3271-4b2e-94b2-513871537923" ], "Cache-Control": [ "no-cache" @@ -2745,23 +2537,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14876" + "14960" ], "x-ms-correlation-request-id": [ - "4fc0326d-4b2f-4dfb-9cdf-685e4a7789be" + "5cc2197b-74d1-47cb-9c14-bb0290220a25" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231513Z:4fc0326d-4b2f-4dfb-9cdf-685e4a7789be" + "WESTUS:20150604T013519Z:5cc2197b-74d1-47cb-9c14-bb0290220a25" ], "Date": [ - "Sun, 31 May 2015 23:15:13 GMT" + "Thu, 04 Jun 2015 01:35:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1166/providers/Microsoft.Compute/virtualMachines/vmpstestrg1166?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTE2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcxMTY2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Compute/virtualMachines/vmpstestrg2529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyNTI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2781,19 +2573,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6508369a-4380-41e8-b5c8-0ea13f44cc0b?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6508369a-4380-41e8-b5c8-0ea13f44cc0b" + "99235011-aae4-497d-a3d1-5c7406ed0c42" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6508369a-4380-41e8-b5c8-0ea13f44cc0b?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2803,20 +2595,20 @@ "1198" ], "x-ms-correlation-request-id": [ - "5149e4e1-5286-490a-85de-ea6295748fc5" + "966cd2d8-a345-47cc-a5b3-bdbd590cfe01" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231517Z:5149e4e1-5286-490a-85de-ea6295748fc5" + "WESTUS:20150604T013524Z:966cd2d8-a345-47cc-a5b3-bdbd590cfe01" ], "Date": [ - "Sun, 31 May 2015 23:15:17 GMT" + "Thu, 04 Jun 2015 01:35:23 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6508369a-4380-41e8-b5c8-0ea13f44cc0b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzY1MDgzNjlhLTQzODAtNDFlOC1iNWM4LTBlYTEzZjQ0Y2MwYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5MjM1MDExLWFhZTQtNDk3ZC1hM2QxLTVjNzQwNmVkMGM0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2824,7 +2616,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6508369a-4380-41e8-b5c8-0ea13f44cc0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:15:15.5213961-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"99235011-aae4-497d-a3d1-5c7406ed0c42\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:35:22.2978339-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2842,7 +2634,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67328be0-254b-494b-a8d7-72cbeceb65c0" + "84c70b0a-fb4d-4ac8-af95-cb7e13b267f0" ], "Cache-Control": [ "no-cache" @@ -2852,23 +2644,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14873" + "14959" ], "x-ms-correlation-request-id": [ - "e80f3f13-6f61-4eba-8019-9355f3e908ab" + "5d146a44-4e00-45a6-922f-2027cf7408c1" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231518Z:e80f3f13-6f61-4eba-8019-9355f3e908ab" + "WESTUS:20150604T013546Z:5d146a44-4e00-45a6-922f-2027cf7408c1" ], "Date": [ - "Sun, 31 May 2015 23:15:18 GMT" + "Thu, 04 Jun 2015 01:35:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6508369a-4380-41e8-b5c8-0ea13f44cc0b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzY1MDgzNjlhLTQzODAtNDFlOC1iNWM4LTBlYTEzZjQ0Y2MwYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5MjM1MDExLWFhZTQtNDk3ZC1hM2QxLTVjNzQwNmVkMGM0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2876,7 +2668,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6508369a-4380-41e8-b5c8-0ea13f44cc0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:15:15.5213961-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"99235011-aae4-497d-a3d1-5c7406ed0c42\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:35:22.2978339-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2894,7 +2686,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d7085999-ec35-4e8a-a67d-5f2943e7acfc" + "86fca51b-d917-431e-8f3a-880839dcab49" ], "Cache-Control": [ "no-cache" @@ -2904,23 +2696,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14952" ], "x-ms-correlation-request-id": [ - "ff530dc1-6270-446f-95ad-4b93f5bb71f9" + "68144d1c-094f-440c-862c-7704c6807be4" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231549Z:ff530dc1-6270-446f-95ad-4b93f5bb71f9" + "WESTUS:20150604T013638Z:68144d1c-094f-440c-862c-7704c6807be4" ], "Date": [ - "Sun, 31 May 2015 23:15:48 GMT" + "Thu, 04 Jun 2015 01:36:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6508369a-4380-41e8-b5c8-0ea13f44cc0b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzY1MDgzNjlhLTQzODAtNDFlOC1iNWM4LTBlYTEzZjQ0Y2MwYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5MjM1MDExLWFhZTQtNDk3ZC1hM2QxLTVjNzQwNmVkMGM0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2928,7 +2720,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6508369a-4380-41e8-b5c8-0ea13f44cc0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:15:15.5213961-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"99235011-aae4-497d-a3d1-5c7406ed0c42\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:35:22.2978339-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2946,7 +2738,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8730c0ce-b124-4528-bcf8-ecb91e6ee17b" + "a0f1d176-fe06-4a7c-82f8-31b31d02434b" ], "Cache-Control": [ "no-cache" @@ -2956,23 +2748,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14946" ], "x-ms-correlation-request-id": [ - "f9458dd8-fde1-4492-84b3-6117c84fa812" + "2deb8e53-b124-4587-a4de-7fff2dff11c9" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231619Z:f9458dd8-fde1-4492-84b3-6117c84fa812" + "WESTUS:20150604T013709Z:2deb8e53-b124-4587-a4de-7fff2dff11c9" ], "Date": [ - "Sun, 31 May 2015 23:16:19 GMT" + "Thu, 04 Jun 2015 01:37:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6508369a-4380-41e8-b5c8-0ea13f44cc0b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzY1MDgzNjlhLTQzODAtNDFlOC1iNWM4LTBlYTEzZjQ0Y2MwYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5MjM1MDExLWFhZTQtNDk3ZC1hM2QxLTVjNzQwNmVkMGM0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2980,7 +2772,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6508369a-4380-41e8-b5c8-0ea13f44cc0b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:15:15.5213961-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"99235011-aae4-497d-a3d1-5c7406ed0c42\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:35:22.2978339-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2998,7 +2790,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a513975f-6956-47fb-b84f-e02c5f161909" + "bd211a60-5b5b-40d1-994e-5f73c77334ae" ], "Cache-Control": [ "no-cache" @@ -3008,23 +2800,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14943" ], "x-ms-correlation-request-id": [ - "1e799569-24bd-4115-9034-dad0592d2a66" + "6d68edd0-1a55-4cc9-b42b-80d89ab1b9e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231650Z:1e799569-24bd-4115-9034-dad0592d2a66" + "WESTUS:20150604T013740Z:6d68edd0-1a55-4cc9-b42b-80d89ab1b9e1" ], "Date": [ - "Sun, 31 May 2015 23:16:50 GMT" + "Thu, 04 Jun 2015 01:37:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/6508369a-4380-41e8-b5c8-0ea13f44cc0b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzY1MDgzNjlhLTQzODAtNDFlOC1iNWM4LTBlYTEzZjQ0Y2MwYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5MjM1MDExLWFhZTQtNDk3ZC1hM2QxLTVjNzQwNmVkMGM0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3032,7 +2824,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6508369a-4380-41e8-b5c8-0ea13f44cc0b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-05-31T16:15:15.5213961-07:00\",\r\n \"endTime\": \"2015-05-31T16:17:17.3346623-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"99235011-aae4-497d-a3d1-5c7406ed0c42\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T18:35:22.2978339-07:00\",\r\n \"endTime\": \"2015-06-03T18:37:44.5018381-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -3050,7 +2842,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "653f893e-9a03-4b64-ad0c-7f74b14d1bd9" + "e7febf29-d0d3-4a25-91b9-ac11215b127c" ], "Cache-Control": [ "no-cache" @@ -3060,23 +2852,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "14938" ], "x-ms-correlation-request-id": [ - "96fb74a2-8fb6-4cb3-91f9-83bc3f5f4722" + "2b5fafe7-563b-4298-a6f5-15b9b4a3710a" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231721Z:96fb74a2-8fb6-4cb3-91f9-83bc3f5f4722" + "WESTUS:20150604T013811Z:2b5fafe7-563b-4298-a6f5-15b9b4a3710a" ], "Date": [ - "Sun, 31 May 2015 23:17:20 GMT" + "Thu, 04 Jun 2015 01:38:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1166?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTE2Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2529?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -3099,16 +2891,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "a16d6e67-eeb0-42ee-9278-c53d85b25482" + "cf540174-69de-486e-af09-1b4fd52cf032" ], "x-ms-correlation-request-id": [ - "a16d6e67-eeb0-42ee-9278-c53d85b25482" + "cf540174-69de-486e-af09-1b4fd52cf032" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231722Z:a16d6e67-eeb0-42ee-9278-c53d85b25482" + "WESTUS:20150604T013818Z:cf540174-69de-486e-af09-1b4fd52cf032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3117,17 +2909,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:17:22 GMT" + "Thu, 04 Jun 2015 01:38:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV4TmpZdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3153,16 +2945,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14860" + "14961" ], "x-ms-request-id": [ - "e4b4117f-8fff-4fc4-a239-cb89b08460a3" + "ad36ac37-f685-41d7-8bcf-668b041b80ee" ], "x-ms-correlation-request-id": [ - "e4b4117f-8fff-4fc4-a239-cb89b08460a3" + "ad36ac37-f685-41d7-8bcf-668b041b80ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231723Z:e4b4117f-8fff-4fc4-a239-cb89b08460a3" + "WESTUS:20150604T013818Z:ad36ac37-f685-41d7-8bcf-668b041b80ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3171,17 +2963,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:17:23 GMT" + "Thu, 04 Jun 2015 01:38:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV4TmpZdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3207,16 +2999,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14958" ], "x-ms-request-id": [ - "c5275c48-e6c6-4de7-821a-f67ba24ac2d1" + "b5337ae4-e320-4b22-8c6c-8e9fad37dcf6" ], "x-ms-correlation-request-id": [ - "c5275c48-e6c6-4de7-821a-f67ba24ac2d1" + "b5337ae4-e320-4b22-8c6c-8e9fad37dcf6" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231738Z:c5275c48-e6c6-4de7-821a-f67ba24ac2d1" + "WESTUS:20150604T013834Z:b5337ae4-e320-4b22-8c6c-8e9fad37dcf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3225,17 +3017,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:17:37 GMT" + "Thu, 04 Jun 2015 01:38:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV4TmpZdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3261,16 +3053,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "14956" ], "x-ms-request-id": [ - "3d9185c8-a69a-4050-8b88-fa8bf8e94fbf" + "14a8691e-3bf7-4c23-a1c1-6af0b72e6156" ], "x-ms-correlation-request-id": [ - "3d9185c8-a69a-4050-8b88-fa8bf8e94fbf" + "14a8691e-3bf7-4c23-a1c1-6af0b72e6156" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231753Z:3d9185c8-a69a-4050-8b88-fa8bf8e94fbf" + "WESTUS:20150604T013850Z:14a8691e-3bf7-4c23-a1c1-6af0b72e6156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3279,17 +3071,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:17:53 GMT" + "Thu, 04 Jun 2015 01:38:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV4TmpZdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3315,16 +3107,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14954" ], "x-ms-request-id": [ - "cfa27104-aada-458a-9661-360caaa89efd" + "d48180ac-5161-4889-91fe-6d76cc2650fa" ], "x-ms-correlation-request-id": [ - "cfa27104-aada-458a-9661-360caaa89efd" + "d48180ac-5161-4889-91fe-6d76cc2650fa" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231809Z:cfa27104-aada-458a-9661-360caaa89efd" + "WESTUS:20150604T013905Z:d48180ac-5161-4889-91fe-6d76cc2650fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3333,17 +3125,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:18:08 GMT" + "Thu, 04 Jun 2015 01:39:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV4TmpZdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3369,16 +3161,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14951" ], "x-ms-request-id": [ - "bb58c20e-de74-4703-9f5f-74a149ab17bd" + "d8a0a98d-09d9-4b84-9401-32c05780dd7b" ], "x-ms-correlation-request-id": [ - "bb58c20e-de74-4703-9f5f-74a149ab17bd" + "d8a0a98d-09d9-4b84-9401-32c05780dd7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231824Z:bb58c20e-de74-4703-9f5f-74a149ab17bd" + "WESTUS:20150604T013920Z:d8a0a98d-09d9-4b84-9401-32c05780dd7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3387,17 +3179,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:18:24 GMT" + "Thu, 04 Jun 2015 01:39:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV4TmpZdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3423,16 +3215,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "14950" ], "x-ms-request-id": [ - "37f633c6-6af3-4e7c-a903-98b04f845603" + "cfddd11a-e12b-416f-95a4-2125325996ed" ], "x-ms-correlation-request-id": [ - "37f633c6-6af3-4e7c-a903-98b04f845603" + "cfddd11a-e12b-416f-95a4-2125325996ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231840Z:37f633c6-6af3-4e7c-a903-98b04f845603" + "WESTUS:20150604T013936Z:cfddd11a-e12b-416f-95a4-2125325996ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3441,17 +3233,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:18:39 GMT" + "Thu, 04 Jun 2015 01:39:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzExNjYtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV4TmpZdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3474,16 +3266,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" + "14949" ], "x-ms-request-id": [ - "3deaebc9-73e1-4bec-887e-1108b064cff5" + "5eb06000-0f13-4e88-9351-898d733b4728" ], "x-ms-correlation-request-id": [ - "3deaebc9-73e1-4bec-887e-1108b064cff5" + "5eb06000-0f13-4e88-9351-898d733b4728" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231855Z:3deaebc9-73e1-4bec-887e-1108b064cff5" + "WESTUS:20150604T013951Z:5eb06000-0f13-4e88-9351-898d733b4728" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3492,14 +3284,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:18:55 GMT" + "Thu, 04 Jun 2015 01:39:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7266?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI2Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2816?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -3525,16 +3317,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14848" + "14948" ], "x-ms-request-id": [ - "2e91d3c5-1d49-4ccf-b98e-c381b691a0c9" + "4977ee78-dbe1-4f40-a068-d5f3e6aa4a8e" ], "x-ms-correlation-request-id": [ - "2e91d3c5-1d49-4ccf-b98e-c381b691a0c9" + "4977ee78-dbe1-4f40-a068-d5f3e6aa4a8e" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231855Z:2e91d3c5-1d49-4ccf-b98e-c381b691a0c9" + "WESTUS:20150604T013951Z:4977ee78-dbe1-4f40-a068-d5f3e6aa4a8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3543,14 +3335,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:18:55 GMT" + "Thu, 04 Jun 2015 01:39:51 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7266?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI2Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2816?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -3570,16 +3362,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14822" + "14888" ], "x-ms-request-id": [ - "a981e14c-57a6-4a4a-bd9a-28f6597044ea" + "7a76472d-53fb-46b3-b914-908d516d0402" ], "x-ms-correlation-request-id": [ - "a981e14c-57a6-4a4a-bd9a-28f6597044ea" + "7a76472d-53fb-46b3-b914-908d516d0402" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232806Z:a981e14c-57a6-4a4a-bd9a-28f6597044ea" + "WESTUS:20150604T014945Z:7a76472d-53fb-46b3-b914-908d516d0402" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3588,31 +3380,31 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:28:06 GMT" + "Thu, 04 Jun 2015 01:49:44 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7266?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI2Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2816?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastasia\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "30" + "29" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266\",\r\n \"name\": \"pstestrg7266\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816\",\r\n \"name\": \"pstestrg2816\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3624,16 +3416,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "b2e87b2b-c0f0-4412-9b13-506ebad7c31d" + "44e2e738-b8f6-49b6-a386-776bee71d73f" ], "x-ms-correlation-request-id": [ - "b2e87b2b-c0f0-4412-9b13-506ebad7c31d" + "44e2e738-b8f6-49b6-a386-776bee71d73f" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231857Z:b2e87b2b-c0f0-4412-9b13-506ebad7c31d" + "WESTUS:20150604T013952Z:44e2e738-b8f6-49b6-a386-776bee71d73f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3642,14 +3434,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:18:57 GMT" + "Thu, 04 Jun 2015 01:39:52 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3672,16 +3464,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14847" + "14947" ], "x-ms-request-id": [ - "1b5d5e63-b7b2-4746-a099-fb42e4cc6fc9" + "5b463b54-9427-4586-9199-38023f640692" ], "x-ms-correlation-request-id": [ - "1b5d5e63-b7b2-4746-a099-fb42e4cc6fc9" + "5b463b54-9427-4586-9199-38023f640692" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231857Z:1b5d5e63-b7b2-4746-a099-fb42e4cc6fc9" + "WESTUS:20150604T013952Z:5b463b54-9427-4586-9199-38023f640692" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3690,14 +3482,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:18:57 GMT" + "Thu, 04 Jun 2015 01:39:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7266/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2816/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3723,16 +3515,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:cda78f31-7e97-4f06-af39-385269cd1db8" + "westus:698d2508-7516-4875-bfac-979c83a83669" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14946" ], "x-ms-correlation-request-id": [ - "99151cfe-a3f0-4563-ad2c-d0019cc2ae3f" + "e069e170-c1df-48e1-a2c7-b3031b7e6a0f" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231858Z:99151cfe-a3f0-4563-ad2c-d0019cc2ae3f" + "WESTUS:20150604T013952Z:e069e170-c1df-48e1-a2c7-b3031b7e6a0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3741,25 +3533,25 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:18:57 GMT" + "Thu, 04 Jun 2015 01:39:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Storage/storageAccounts/stopstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Storage/storageAccounts/stopstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "90" + "89" ], "x-ms-client-request-id": [ - "00c79990-79e9-4d1b-828f-27ff3cd3e218" + "bad63fa4-cd3d-432e-9256-d9d5840c7fd8" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -3783,44 +3575,44 @@ "25" ], "x-ms-request-id": [ - "0df17a4c-5c5d-4328-878c-9d8fe2e55f72" + "7fe0f2f3-b253-46ef-8f7d-73ffda94c301" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0df17a4c-5c5d-4328-878c-9d8fe2e55f72?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7fe0f2f3-b253-46ef-8f7d-73ffda94c301?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "806fddfb-b67d-465c-8329-f932387c60c9" + "8284bd4e-d3a8-4112-a76f-afba39311878" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231904Z:806fddfb-b67d-465c-8329-f932387c60c9" + "WESTUS:20150604T013956Z:8284bd4e-d3a8-4112-a76f-afba39311878" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:19:03 GMT" + "Thu, 04 Jun 2015 01:39:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0df17a4c-5c5d-4328-878c-9d8fe2e55f72?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBkZjE3YTRjLTVjNWQtNDMyOC04NzhjLTlkOGZlMmU1NWY3Mj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7fe0f2f3-b253-46ef-8f7d-73ffda94c301?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdmZTBmMmYzLWIyNTMtNDZlZi04ZjdkLTczZmZkYTk0YzMwMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7aac0100-993d-4e38-b15d-799d2f3d7589" + "76765990-327e-4cca-9ba7-2c9319494e09" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -3844,53 +3636,53 @@ "25" ], "x-ms-request-id": [ - "b3d6b875-c400-4229-9019-8814eca8d3d4" + "9cd75705-61f3-455b-970f-bc0f48766c42" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0df17a4c-5c5d-4328-878c-9d8fe2e55f72?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7fe0f2f3-b253-46ef-8f7d-73ffda94c301?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" + "14944" ], "x-ms-correlation-request-id": [ - "e48a1297-62d8-4ae1-8b93-3a823d9f693c" + "52a03bda-0b65-4826-8b2a-2e116b25bb38" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231905Z:e48a1297-62d8-4ae1-8b93-3a823d9f693c" + "WESTUS:20150604T013956Z:52a03bda-0b65-4826-8b2a-2e116b25bb38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:19:04 GMT" + "Thu, 04 Jun 2015 01:39:56 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0df17a4c-5c5d-4328-878c-9d8fe2e55f72?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBkZjE3YTRjLTVjNWQtNDMyOC04NzhjLTlkOGZlMmU1NWY3Mj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7fe0f2f3-b253-46ef-8f7d-73ffda94c301?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdmZTBmMmYzLWIyNTMtNDZlZi04ZjdkLTczZmZkYTk0YzMwMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39e802cc-9480-434d-bf78-b6213b1c681b" + "3c59e1a6-ba27-40b7-a7f9-7ca42541f3b9" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "68" + "66" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3902,7 +3694,7 @@ "no-cache" ], "x-ms-request-id": [ - "63a8524c-70a3-4f0e-a319-63071cddf916" + "6e89a151-cacf-4b36-8502-32ad96028329" ], "Cache-Control": [ "no-cache" @@ -3912,40 +3704,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14848" + "14941" ], "x-ms-correlation-request-id": [ - "c1a691de-9bfe-4da9-872c-586a9654241a" + "f58103f8-a7ae-4056-87e2-433dbfc6f8cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231930Z:c1a691de-9bfe-4da9-872c-586a9654241a" + "WESTUS:20150604T014021Z:f58103f8-a7ae-4056-87e2-433dbfc6f8cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:19:29 GMT" + "Thu, 04 Jun 2015 01:40:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Storage/storageAccounts/stopstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Storage/storageAccounts/stopstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5018dded-79dd-4c7e-8e10-7451a333bcef" + "0b8a80ad-e0cc-4a7f-9702-ea539a8c3a41" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Storage/storageAccounts/stopstestrg7266\",\r\n \"name\": \"stopstestrg7266\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7266.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7266.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7266.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-05-31T23:19:01.6906471Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Storage/storageAccounts/stopstestrg2816\",\r\n \"name\": \"stopstestrg2816\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg2816.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2816.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2816.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:39:53.3822571Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "683" + "672" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3957,7 +3749,7 @@ "no-cache" ], "x-ms-request-id": [ - "f7699346-f95e-4af8-b959-53a4e14bb8db" + "1889aea2-aff8-4777-b2e7-abd051a6598a" ], "Cache-Control": [ "no-cache" @@ -3967,40 +3759,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14847" + "14940" ], "x-ms-correlation-request-id": [ - "9c0c24c0-71e2-422e-b436-63bd20ba0aeb" + "47bef013-d3c3-4821-b81a-e58d5c86cd89" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231930Z:9c0c24c0-71e2-422e-b436-63bd20ba0aeb" + "WESTUS:20150604T014021Z:47bef013-d3c3-4821-b81a-e58d5c86cd89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:19:29 GMT" + "Thu, 04 Jun 2015 01:40:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Storage/storageAccounts/stopstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Storage/storageAccounts/stopstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d6aad8f-647f-4a25-ae44-12c4f3d26f43" + "ebcdcb6b-9b6d-4310-9ff2-b968181a7e4f" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Storage/storageAccounts/stopstestrg7266\",\r\n \"name\": \"stopstestrg7266\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7266.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7266.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7266.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-05-31T23:19:01.6906471Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Storage/storageAccounts/stopstestrg2816\",\r\n \"name\": \"stopstestrg2816\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg2816.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2816.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2816.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:39:53.3822571Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "683" + "672" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4012,7 +3804,7 @@ "no-cache" ], "x-ms-request-id": [ - "7e2dd27a-d12c-437d-9068-9f66264371b3" + "0c65c840-99d3-49ad-9124-d821b05c1c87" ], "Cache-Control": [ "no-cache" @@ -4022,26 +3814,26 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14846" + "14939" ], "x-ms-correlation-request-id": [ - "1945d400-98a5-48fa-9a42-d0215b4f9d0e" + "a8558a9a-0450-4147-9171-a770d7cbe2a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231930Z:1945d400-98a5-48fa-9a42-d0215b4f9d0e" + "WESTUS:20150604T014022Z:a8558a9a-0450-4147-9171-a770d7cbe2a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:19:29 GMT" + "Thu, 04 Jun 2015 01:40:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcyNjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4067,13 +3859,13 @@ "gateway" ], "x-ms-request-id": [ - "436d4b30-7d88-4c5d-923c-3c79308c73b9" + "b15fd4bb-fb4b-481c-b36a-28379e0d22a1" ], "x-ms-correlation-request-id": [ - "436d4b30-7d88-4c5d-923c-3c79308c73b9" + "b15fd4bb-fb4b-481c-b36a-28379e0d22a1" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231930Z:436d4b30-7d88-4c5d-923c-3c79308c73b9" + "CENTRALUS:20150604T014023Z:b15fd4bb-fb4b-481c-b36a-28379e0d22a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4082,14 +3874,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:19:30 GMT" + "Thu, 04 Jun 2015 01:40:22 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcyNjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4097,10 +3889,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7266\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7266\",\r\n \"etag\": \"W/\\\"0fc35ad9-0153-4049-b7b9-5d3880bbb7dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7266\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7266/subnets/subnetpstestrg7266\",\r\n \"etag\": \"W/\\\"0fc35ad9-0153-4049-b7b9-5d3880bbb7dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816\",\r\n \"etag\": \"W/\\\"d4099633-5d67-440f-a7e3-96cb10f5786a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\",\r\n \"etag\": \"W/\\\"d4099633-5d67-440f-a7e3-96cb10f5786a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "962" + "960" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4112,7 +3904,7 @@ "no-cache" ], "x-ms-request-id": [ - "c055e5ec-8004-4d89-b7d6-377167d7749c" + "a2e1e7cd-31a5-4cf3-b682-25f81a690282" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4121,30 +3913,30 @@ "no-cache" ], "ETag": [ - "W/\"0fc35ad9-0153-4049-b7b9-5d3880bbb7dd\"" + "W/\"d4099633-5d67-440f-a7e3-96cb10f5786a\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" + "14997" ], "x-ms-correlation-request-id": [ - "9662ebff-accc-4857-94a1-c8b9e4ccfe1b" + "f8908676-e290-4be9-a7ef-140e4208ac43" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231938Z:9662ebff-accc-4857-94a1-c8b9e4ccfe1b" + "CENTRALUS:20150604T014026Z:f8908676-e290-4be9-a7ef-140e4208ac43" ], "Date": [ - "Sun, 31 May 2015 23:19:37 GMT" + "Thu, 04 Jun 2015 01:40:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcyNjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4152,10 +3944,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7266\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7266\",\r\n \"etag\": \"W/\\\"0fc35ad9-0153-4049-b7b9-5d3880bbb7dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7266\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7266/subnets/subnetpstestrg7266\",\r\n \"etag\": \"W/\\\"0fc35ad9-0153-4049-b7b9-5d3880bbb7dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816\",\r\n \"etag\": \"W/\\\"d4099633-5d67-440f-a7e3-96cb10f5786a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\",\r\n \"etag\": \"W/\\\"d4099633-5d67-440f-a7e3-96cb10f5786a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "962" + "960" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4167,7 +3959,7 @@ "no-cache" ], "x-ms-request-id": [ - "82d4b070-6526-4b33-9ec5-28baf94a930f" + "ef29e6e2-e4a8-4107-99f8-2712ef439bec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4176,47 +3968,47 @@ "no-cache" ], "ETag": [ - "W/\"0fc35ad9-0153-4049-b7b9-5d3880bbb7dd\"" + "W/\"d4099633-5d67-440f-a7e3-96cb10f5786a\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14996" ], "x-ms-correlation-request-id": [ - "53804242-b4ca-43a8-a0ec-e03812fea1ce" + "245df58d-65f3-4e65-ae26-8cccf2b286b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231938Z:53804242-b4ca-43a8-a0ec-e03812fea1ce" + "CENTRALUS:20150604T014026Z:245df58d-65f3-4e65-ae26-8cccf2b286b1" ], "Date": [ - "Sun, 31 May 2015 23:19:37 GMT" + "Thu, 04 Jun 2015 01:40:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcyNjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg7266\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg7266\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg2816\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg2816\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "502" + "501" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7266\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7266\",\r\n \"etag\": \"W/\\\"ee2f3e2f-8d19-45c3-8781-0116d95db852\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7266\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7266/subnets/subnetpstestrg7266\",\r\n \"etag\": \"W/\\\"ee2f3e2f-8d19-45c3-8781-0116d95db852\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816\",\r\n \"etag\": \"W/\\\"4ee1c679-288e-4fce-a201-0485b79a5980\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\",\r\n \"etag\": \"W/\\\"4ee1c679-288e-4fce-a201-0485b79a5980\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "958" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4231,10 +4023,10 @@ "10" ], "x-ms-request-id": [ - "5a7ec8d2-5e12-4284-8434-aac2dc80aa83" + "4d94dec6-fb30-4c03-880e-955f5ac3e8c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/5a7ec8d2-5e12-4284-8434-aac2dc80aa83?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/4d94dec6-fb30-4c03-880e-955f5ac3e8c1?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4247,23 +4039,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "896a869f-f6d3-4d3b-b8ff-66590e836d43" + "be76e0f9-a5ac-4f71-92cd-bc2c397b2303" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231937Z:896a869f-f6d3-4d3b-b8ff-66590e836d43" + "CENTRALUS:20150604T014026Z:be76e0f9-a5ac-4f71-92cd-bc2c397b2303" ], "Date": [ - "Sun, 31 May 2015 23:19:36 GMT" + "Thu, 04 Jun 2015 01:40:25 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/5a7ec8d2-5e12-4284-8434-aac2dc80aa83?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81YTdlYzhkMi01ZTEyLTQyODQtODQzNC1hYWMyZGM4MGFhODM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/4d94dec6-fb30-4c03-880e-955f5ac3e8c1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGQ5NGRlYzYtZmIzMC00YzAzLTg4MGUtOTU1ZjVhYzNlOGMxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,7 +4081,7 @@ "no-cache" ], "x-ms-request-id": [ - "2b140863-33a3-42e7-b74d-6b9283e31d8a" + "9c36cea0-35dd-4bb8-8ef5-32420ab37ea4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4302,23 +4094,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14841" + "14998" ], "x-ms-correlation-request-id": [ - "7c6da546-4da5-4b1b-a151-25d35e9be4b2" + "ee3a9c13-5eeb-4e47-8494-3709228300cb" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231937Z:7c6da546-4da5-4b1b-a151-25d35e9be4b2" + "CENTRALUS:20150604T014026Z:ee3a9c13-5eeb-4e47-8494-3709228300cb" ], "Date": [ - "Sun, 31 May 2015 23:19:37 GMT" + "Thu, 04 Jun 2015 01:40:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzI2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4344,13 +4136,13 @@ "gateway" ], "x-ms-request-id": [ - "1acf4d35-09f7-4c3c-9add-fc918a560842" + "3ea85965-208b-4e13-a831-41747fff3736" ], "x-ms-correlation-request-id": [ - "1acf4d35-09f7-4c3c-9add-fc918a560842" + "3ea85965-208b-4e13-a831-41747fff3736" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231938Z:1acf4d35-09f7-4c3c-9add-fc918a560842" + "CENTRALUS:20150604T014026Z:3ea85965-208b-4e13-a831-41747fff3736" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4359,14 +4151,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:19:38 GMT" + "Thu, 04 Jun 2015 01:40:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzI2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4374,10 +4166,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg7266\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7266\",\r\n \"etag\": \"W/\\\"d09ba1f3-2043-4938-acf1-138c275e812e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7266/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d09ba1f3-2043-4938-acf1-138c275e812e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7266/subnets/subnetpstestrg7266\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816\",\r\n \"etag\": \"W/\\\"8198e199-2809-44fb-bffa-49097dd50866\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8198e199-2809-44fb-bffa-49097dd50866\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1094" + "1092" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4389,7 +4181,7 @@ "no-cache" ], "x-ms-request-id": [ - "39842922-095e-48bc-bf23-83c00c82aa8e" + "d25a2fbb-6bbf-43fc-97dc-739d5eb9264d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4398,47 +4190,47 @@ "no-cache" ], "ETag": [ - "W/\"d09ba1f3-2043-4938-acf1-138c275e812e\"" + "W/\"8198e199-2809-44fb-bffa-49097dd50866\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14993" ], "x-ms-correlation-request-id": [ - "80c8d261-ee59-49ff-8390-a7a06d7b80e8" + "ec2e5607-afc4-4e62-8b1c-59516da14af8" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231943Z:80c8d261-ee59-49ff-8390-a7a06d7b80e8" + "CENTRALUS:20150604T014029Z:ec2e5607-afc4-4e62-8b1c-59516da14af8" ], "Date": [ - "Sun, 31 May 2015 23:19:43 GMT" + "Thu, 04 Jun 2015 01:40:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzI2Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7266/subnets/subnetpstestrg7266\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg7266\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg2816\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "649" + "648" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg7266\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7266\",\r\n \"etag\": \"W/\\\"d09ba1f3-2043-4938-acf1-138c275e812e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7266/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d09ba1f3-2043-4938-acf1-138c275e812e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7266/subnets/subnetpstestrg7266\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816\",\r\n \"etag\": \"W/\\\"8198e199-2809-44fb-bffa-49097dd50866\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8198e199-2809-44fb-bffa-49097dd50866\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1094" + "1092" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4450,10 +4242,10 @@ "no-cache" ], "x-ms-request-id": [ - "9f80bdf8-b4b1-4216-8c35-305cb0b36143" + "92c9ff19-c184-4eea-aeaa-a9c03f04e155" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/9f80bdf8-b4b1-4216-8c35-305cb0b36143?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/92c9ff19-c184-4eea-aeaa-a9c03f04e155?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4466,23 +4258,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "d7b50577-f5d9-445b-b69c-31acb735005d" + "f5dfde46-7251-4f3f-819e-b51eff6102d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231942Z:d7b50577-f5d9-445b-b69c-31acb735005d" + "CENTRALUS:20150604T014029Z:f5dfde46-7251-4f3f-819e-b51eff6102d6" ], "Date": [ - "Sun, 31 May 2015 23:19:42 GMT" + "Thu, 04 Jun 2015 01:40:28 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/9f80bdf8-b4b1-4216-8c35-305cb0b36143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy85ZjgwYmRmOC1iNGIxLTQyMTYtOGMzNS0zMDVjYjBiMzYxNDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/92c9ff19-c184-4eea-aeaa-a9c03f04e155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTJjOWZmMTktYzE4NC00ZWVhLWFlYWEtYTljMDNmMDRlMTU1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4508,7 +4300,7 @@ "no-cache" ], "x-ms-request-id": [ - "c8a6a4e9-cb99-49ac-a457-911674ac4b8c" + "ba02be7c-62d0-4d0d-a06e-a94dfa705f68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4521,40 +4313,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14994" ], "x-ms-correlation-request-id": [ - "9031f360-d33c-4c7b-a85e-ecb314afc6eb" + "445a49d7-7843-4afe-b1d3-2cfaa4af5793" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231943Z:9031f360-d33c-4c7b-a85e-ecb314afc6eb" + "CENTRALUS:20150604T014029Z:445a49d7-7843-4afe-b1d3-2cfaa4af5793" ], "Date": [ - "Sun, 31 May 2015 23:19:42 GMT" + "Thu, 04 Jun 2015 01:40:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Compute/virtualMachines/vmpstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MjY2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Compute/virtualMachines/vmpstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyODE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A5\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7266.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7266\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg7266\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7266\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg7266\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2816.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2816\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg2816\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg2816\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1107" + "1106" ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A5\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7266.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7266\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7266\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Compute/virtualMachines/vmpstestrg7266\",\r\n \"name\": \"vmpstestrg7266\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2816.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2816\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Compute/virtualMachines/vmpstestrg2816\",\r\n \"name\": \"vmpstestrg2816\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1360" + "1358" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4566,13 +4358,13 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2159a02b-df6a-45e2-92ee-6f968d5ffc73" + "684a858a-091d-4972-aa99-4fb34f64d0d8" ], "Cache-Control": [ "no-cache" @@ -4582,23 +4374,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "5b49f87b-5437-4fba-a64f-77f8831bf2e4" + "80646eed-c6e0-40ae-8e25-9632de48548a" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231950Z:5b49f87b-5437-4fba-a64f-77f8831bf2e4" + "CENTRALUS:20150604T014036Z:80646eed-c6e0-40ae-8e25-9632de48548a" ], "Date": [ - "Sun, 31 May 2015 23:19:50 GMT" + "Thu, 04 Jun 2015 01:40:36 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4606,7 +4398,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4624,7 +4416,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dcb987ef-c95f-4eef-bd59-9c58c99ca6e4" + "6548dcbe-857b-4706-9dd6-737bb6776d11" ], "Cache-Control": [ "no-cache" @@ -4634,23 +4426,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "14994" ], "x-ms-correlation-request-id": [ - "c3f4f987-5653-4826-b6e2-b61b5a5993d8" + "da1eb5e1-32ee-4fc5-b12f-38ee8d06360e" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T231951Z:c3f4f987-5653-4826-b6e2-b61b5a5993d8" + "CENTRALUS:20150604T014036Z:da1eb5e1-32ee-4fc5-b12f-38ee8d06360e" ], "Date": [ - "Sun, 31 May 2015 23:19:51 GMT" + "Thu, 04 Jun 2015 01:40:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4658,7 +4450,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4676,7 +4468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d7aaea4-15a1-44fa-898c-37f36913bca9" + "b2473560-7e11-4974-8633-2b2fb5520c0d" ], "Cache-Control": [ "no-cache" @@ -4686,23 +4478,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "14993" ], "x-ms-correlation-request-id": [ - "7f21c559-9ecb-4b26-98c3-072f5c3feea8" + "03aa0602-7ac4-4d0e-a327-23667513f880" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232022Z:7f21c559-9ecb-4b26-98c3-072f5c3feea8" + "CENTRALUS:20150604T014106Z:03aa0602-7ac4-4d0e-a327-23667513f880" ], "Date": [ - "Sun, 31 May 2015 23:20:21 GMT" + "Thu, 04 Jun 2015 01:41:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4710,7 +4502,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4728,7 +4520,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab97e4d8-9610-43a1-a846-3faf58a52c9e" + "944aa22b-0cc3-4d40-bdaf-763c4732a6d6" ], "Cache-Control": [ "no-cache" @@ -4738,23 +4530,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" + "14989" ], "x-ms-correlation-request-id": [ - "9e2a45d1-d64c-4aba-a2ac-f04e9ea513b1" + "191d5d36-e6f2-45fc-983d-2cd589bfb262" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232052Z:9e2a45d1-d64c-4aba-a2ac-f04e9ea513b1" + "CENTRALUS:20150604T014137Z:191d5d36-e6f2-45fc-983d-2cd589bfb262" ], "Date": [ - "Sun, 31 May 2015 23:20:52 GMT" + "Thu, 04 Jun 2015 01:41:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4762,7 +4554,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4780,7 +4572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0510f520-0df4-418e-910c-a0584cfb934e" + "d21edc90-1ccc-40f1-8f0a-9e8a2c2347e8" ], "Cache-Control": [ "no-cache" @@ -4790,23 +4582,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "14986" ], "x-ms-correlation-request-id": [ - "acd63460-47b8-4701-9c52-ccf96fd24e0f" + "b9781e5e-fdd4-49f9-8046-b332c5d97f23" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232123Z:acd63460-47b8-4701-9c52-ccf96fd24e0f" + "CENTRALUS:20150604T014207Z:b9781e5e-fdd4-49f9-8046-b332c5d97f23" ], "Date": [ - "Sun, 31 May 2015 23:21:23 GMT" + "Thu, 04 Jun 2015 01:42:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4814,7 +4606,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4832,7 +4624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e78c7041-35fc-49e8-af67-86af5357fee3" + "f2fa2129-ea51-4e3e-b916-8104c04fe151" ], "Cache-Control": [ "no-cache" @@ -4842,23 +4634,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14847" + "14983" ], "x-ms-correlation-request-id": [ - "a3299e32-8284-407f-b700-4500086f87f4" + "629ebb2a-3d0c-4455-a41b-a15f62ddc939" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232154Z:a3299e32-8284-407f-b700-4500086f87f4" + "CENTRALUS:20150604T014237Z:629ebb2a-3d0c-4455-a41b-a15f62ddc939" ], "Date": [ - "Sun, 31 May 2015 23:21:53 GMT" + "Thu, 04 Jun 2015 01:42:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4866,7 +4658,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4884,7 +4676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16f69b86-4557-4896-82c7-b82cda3077b4" + "df1d2ac3-94ef-4af7-bb32-d54a4ba50fbb" ], "Cache-Control": [ "no-cache" @@ -4894,23 +4686,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14842" + "14974" ], "x-ms-correlation-request-id": [ - "9beb7543-392b-4e9e-aa28-2fab2600d710" + "1973697f-9b42-47d7-b6e2-bbee3a9e1678" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232224Z:9beb7543-392b-4e9e-aa28-2fab2600d710" + "CENTRALUS:20150604T014307Z:1973697f-9b42-47d7-b6e2-bbee3a9e1678" ], "Date": [ - "Sun, 31 May 2015 23:22:24 GMT" + "Thu, 04 Jun 2015 01:43:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4918,7 +4710,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4936,7 +4728,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af4fb0d3-be1d-4392-80ca-9321aabaf2df" + "02350de8-6f22-4d45-96c6-2da260e4b5b6" ], "Cache-Control": [ "no-cache" @@ -4946,23 +4738,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14973" ], "x-ms-correlation-request-id": [ - "027ff06c-f31c-48ef-8ac4-80300fe7a125" + "8d171bf7-0eb8-4860-9cbd-5b1a5c975da0" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232255Z:027ff06c-f31c-48ef-8ac4-80300fe7a125" + "CENTRALUS:20150604T014338Z:8d171bf7-0eb8-4860-9cbd-5b1a5c975da0" ], "Date": [ - "Sun, 31 May 2015 23:22:54 GMT" + "Thu, 04 Jun 2015 01:43:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4970,7 +4762,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4988,7 +4780,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "682d49b0-bb4b-4e9e-9e67-f4cdf0214dd9" + "17c7f4ff-e96d-4c4c-ac40-848e8b520745" ], "Cache-Control": [ "no-cache" @@ -4998,23 +4790,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14972" ], "x-ms-correlation-request-id": [ - "a8b9e72e-f67f-45a1-9e0b-d9860980b9c6" + "e438d40c-4899-4fae-bad1-e028e3d50865" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232325Z:a8b9e72e-f67f-45a1-9e0b-d9860980b9c6" + "CENTRALUS:20150604T014408Z:e438d40c-4899-4fae-bad1-e028e3d50865" ], "Date": [ - "Sun, 31 May 2015 23:23:25 GMT" + "Thu, 04 Jun 2015 01:44:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5022,7 +4814,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5040,7 +4832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3d798de-add1-4754-b9a4-096f2d171fda" + "8e05b142-6f2b-41b5-9d24-2899ee8f8e01" ], "Cache-Control": [ "no-cache" @@ -5050,23 +4842,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14971" ], "x-ms-correlation-request-id": [ - "9e37791a-4150-411f-8a9f-afd02041f361" + "c7ff4d7b-10f3-4f1d-8c22-4beef6230686" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232356Z:9e37791a-4150-411f-8a9f-afd02041f361" + "CENTRALUS:20150604T014438Z:c7ff4d7b-10f3-4f1d-8c22-4beef6230686" ], "Date": [ - "Sun, 31 May 2015 23:23:55 GMT" + "Thu, 04 Jun 2015 01:44:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5074,7 +4866,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5092,7 +4884,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54b9d4a3-1e29-472d-9570-b168e3b2afc2" + "72146706-54a8-4137-9f25-98de1d96bc84" ], "Cache-Control": [ "no-cache" @@ -5102,23 +4894,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14970" ], "x-ms-correlation-request-id": [ - "e72987d3-04cf-4f11-bb40-e3bb7ec34424" + "fa9e3d72-7b26-4d97-8a57-43e9b4ec6b7f" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232426Z:e72987d3-04cf-4f11-bb40-e3bb7ec34424" + "CENTRALUS:20150604T014508Z:fa9e3d72-7b26-4d97-8a57-43e9b4ec6b7f" ], "Date": [ - "Sun, 31 May 2015 23:24:26 GMT" + "Thu, 04 Jun 2015 01:45:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5126,7 +4918,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5144,7 +4936,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7eacfaf8-f54e-4857-8231-de6dae6ccb9f" + "514e608b-8868-42b0-b595-4726e4ca27d3" ], "Cache-Control": [ "no-cache" @@ -5154,23 +4946,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "14969" ], "x-ms-correlation-request-id": [ - "612b81c5-e3c9-4530-9d3b-369427e73e33" + "5d6959dc-54d1-41d8-84b5-4b9971d81f93" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232457Z:612b81c5-e3c9-4530-9d3b-369427e73e33" + "CENTRALUS:20150604T014538Z:5d6959dc-54d1-41d8-84b5-4b9971d81f93" ], "Date": [ - "Sun, 31 May 2015 23:24:57 GMT" + "Thu, 04 Jun 2015 01:45:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5178,7 +4970,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5196,7 +4988,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e463c9a8-217f-4c5b-b2cc-0a46565def00" + "347919ed-9063-4217-a68a-b4a98cb70a51" ], "Cache-Control": [ "no-cache" @@ -5206,23 +4998,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "14968" ], "x-ms-correlation-request-id": [ - "0ccfd637-c5e7-4b6c-943b-b544ead0f6e1" + "225d1587-a6fe-4d28-bbec-2ac6fe87598a" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232527Z:0ccfd637-c5e7-4b6c-943b-b544ead0f6e1" + "CENTRALUS:20150604T014609Z:225d1587-a6fe-4d28-bbec-2ac6fe87598a" ], "Date": [ - "Sun, 31 May 2015 23:25:27 GMT" + "Thu, 04 Jun 2015 01:46:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/2159a02b-df6a-45e2-92ee-6f968d5ffc73?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTU5YTAyYi1kZjZhLTQ1ZTItOTJlZS02Zjk2OGQ1ZmZjNzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5230,10 +5022,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2159a02b-df6a-45e2-92ee-6f968d5ffc73\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-05-31T16:19:49.1308303-07:00\",\r\n \"endTime\": \"2015-05-31T16:25:45.846713-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5248,7 +5040,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0dfedced-5bc3-481d-a344-a2deeea7191a" + "4883f8b6-b7a7-4cc7-aefa-6b0140cccff8" ], "Cache-Control": [ "no-cache" @@ -5258,23 +5050,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14821" + "14967" ], "x-ms-correlation-request-id": [ - "3595deca-f720-4c9f-b33e-a43768c6ee34" + "11bae80b-9748-4d88-8910-cf0b16eec28f" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232558Z:3595deca-f720-4c9f-b33e-a43768c6ee34" + "CENTRALUS:20150604T014639Z:11bae80b-9748-4d88-8910-cf0b16eec28f" ], "Date": [ - "Sun, 31 May 2015 23:25:58 GMT" + "Thu, 04 Jun 2015 01:46:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Compute/virtualMachines/vmpstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MjY2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5282,10 +5074,62 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A5\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7266.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7266\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7266\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Compute/virtualMachines/vmpstestrg7266\",\r\n \"name\": \"vmpstestrg7266\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\",\r\n \"endTime\": \"2015-06-03T18:46:49.7688453-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1361" + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1175cf9e-3896-459c-9b94-986cd5934ab6" + ], + "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": [ + "32682ca3-075d-4e0a-af23-87620aaaec57" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150604T014709Z:32682ca3-075d-4e0a-af23-87620aaaec57" + ], + "Date": [ + "Thu, 04 Jun 2015 01:47:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Compute/virtualMachines/vmpstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyODE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2816.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2816\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Compute/virtualMachines/vmpstestrg2816\",\r\n \"name\": \"vmpstestrg2816\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1359" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5300,7 +5144,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7f785069-3dd0-45a7-a308-b41e6ff410fb" + "db9218af-3d20-4ee5-81eb-7d707d20cd9c" ], "Cache-Control": [ "no-cache" @@ -5310,23 +5154,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" + "14965" ], "x-ms-correlation-request-id": [ - "b1d8071b-4fc4-4098-92d9-f1cb9abee591" + "05053713-7a17-41c1-9d78-3f546a049fbb" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232559Z:b1d8071b-4fc4-4098-92d9-f1cb9abee591" + "CENTRALUS:20150604T014710Z:05053713-7a17-41c1-9d78-3f546a049fbb" ], "Date": [ - "Sun, 31 May 2015 23:25:58 GMT" + "Thu, 04 Jun 2015 01:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7266/providers/Microsoft.Compute/virtualMachines/vmpstestrg7266?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MjY2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Compute/virtualMachines/vmpstestrg2816?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyODE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5346,42 +5190,42 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/216e08c6-cde1-414e-9c93-40e442baab53?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "216e08c6-cde1-414e-9c93-40e442baab53" + "d93b43aa-48a5-47ed-bf95-e47bc296d27e" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/216e08c6-cde1-414e-9c93-40e442baab53?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "3d234ce6-16b9-45ab-b7e7-bf15e984ff64" + "36b82704-db70-4ad5-a08f-9551dd61ba0a" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232603Z:3d234ce6-16b9-45ab-b7e7-bf15e984ff64" + "CENTRALUS:20150604T014713Z:36b82704-db70-4ad5-a08f-9551dd61ba0a" ], "Date": [ - "Sun, 31 May 2015 23:26:03 GMT" + "Thu, 04 Jun 2015 01:47:13 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/216e08c6-cde1-414e-9c93-40e442baab53?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTZlMDhjNi1jZGUxLTQxNGUtOWM5My00MGU0NDJiYWFiNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5389,7 +5233,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"216e08c6-cde1-414e-9c93-40e442baab53\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:26:01.9247163-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5407,7 +5251,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fbad1264-2cbc-4f10-93e0-4db1257b7e40" + "9dc7d725-b360-41ad-8001-045bd7d4c442" ], "Cache-Control": [ "no-cache" @@ -5417,23 +5261,75 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "14964" + ], + "x-ms-correlation-request-id": [ + "e72608e4-cdbd-48f8-b2e7-84cdc4c3bd79" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150604T014714Z:e72608e4-cdbd-48f8-b2e7-84cdc4c3bd79" + ], + "Date": [ + "Thu, 04 Jun 2015 01:47:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8d29aa53-3819-4d49-b81b-9b13938b5e2f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" ], "x-ms-correlation-request-id": [ - "47f84941-699c-49e4-99bd-ae907a4f9edb" + "b98ffe86-3540-46cb-a8ec-98e0f0fcd367" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232604Z:47f84941-699c-49e4-99bd-ae907a4f9edb" + "CENTRALUS:20150604T014744Z:b98ffe86-3540-46cb-a8ec-98e0f0fcd367" ], "Date": [ - "Sun, 31 May 2015 23:26:03 GMT" + "Thu, 04 Jun 2015 01:47:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/216e08c6-cde1-414e-9c93-40e442baab53?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTZlMDhjNi1jZGUxLTQxNGUtOWM5My00MGU0NDJiYWFiNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5441,7 +5337,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"216e08c6-cde1-414e-9c93-40e442baab53\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:26:01.9247163-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5459,7 +5355,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "84d105be-0f86-41c2-aa6d-bf6df3dd9288" + "2155117d-2396-4fc4-a426-d589a9c70dec" ], "Cache-Control": [ "no-cache" @@ -5469,23 +5365,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14809" + "14962" ], "x-ms-correlation-request-id": [ - "37496f9b-0dac-44ff-b5a4-70d410824d02" + "e82771ea-9c46-4849-827f-cf3f4550211f" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232635Z:37496f9b-0dac-44ff-b5a4-70d410824d02" + "CENTRALUS:20150604T014814Z:e82771ea-9c46-4849-827f-cf3f4550211f" ], "Date": [ - "Sun, 31 May 2015 23:26:34 GMT" + "Thu, 04 Jun 2015 01:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/216e08c6-cde1-414e-9c93-40e442baab53?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTZlMDhjNi1jZGUxLTQxNGUtOWM5My00MGU0NDJiYWFiNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5493,7 +5389,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"216e08c6-cde1-414e-9c93-40e442baab53\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:26:01.9247163-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5511,7 +5407,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "736134e6-7a82-4ee0-bc2a-230ffc8f8c72" + "bd24e5ff-9b5c-4b23-afc8-938b1f270764" ], "Cache-Control": [ "no-cache" @@ -5521,23 +5417,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14806" + "14961" ], "x-ms-correlation-request-id": [ - "266c6a67-f739-42a3-98ad-c404af4e6d86" + "b4e94695-ae52-4941-84fc-55d1729b5db7" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232705Z:266c6a67-f739-42a3-98ad-c404af4e6d86" + "CENTRALUS:20150604T014844Z:b4e94695-ae52-4941-84fc-55d1729b5db7" ], "Date": [ - "Sun, 31 May 2015 23:27:05 GMT" + "Thu, 04 Jun 2015 01:48:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/216e08c6-cde1-414e-9c93-40e442baab53?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTZlMDhjNi1jZGUxLTQxNGUtOWM5My00MGU0NDJiYWFiNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5545,7 +5441,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"216e08c6-cde1-414e-9c93-40e442baab53\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:26:01.9247163-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5563,7 +5459,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ac3878d7-7cfb-427d-91b9-50366adc2e41" + "7db7afd4-28d2-4da0-984e-2f2c78e82d7b" ], "Cache-Control": [ "no-cache" @@ -5573,23 +5469,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14804" + "14960" ], "x-ms-correlation-request-id": [ - "137112b3-cb3a-4fbf-9df7-d42644c405f3" + "481817ee-38c1-4c17-bc61-33347f9939a8" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232736Z:137112b3-cb3a-4fbf-9df7-d42644c405f3" + "CENTRALUS:20150604T014915Z:481817ee-38c1-4c17-bc61-33347f9939a8" ], "Date": [ - "Sun, 31 May 2015 23:27:35 GMT" + "Thu, 04 Jun 2015 01:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/216e08c6-cde1-414e-9c93-40e442baab53?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yMTZlMDhjNi1jZGUxLTQxNGUtOWM5My00MGU0NDJiYWFiNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5597,7 +5493,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"216e08c6-cde1-414e-9c93-40e442baab53\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-05-31T16:26:01.9247163-07:00\",\r\n \"endTime\": \"2015-05-31T16:27:53.4083777-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\",\r\n \"endTime\": \"2015-06-03T18:49:33.5355279-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -5615,7 +5511,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99b1c7a6-70a5-4f7b-a959-880be10b2fcb" + "32366c52-bde6-499e-a64c-45a22dcb9533" ], "Cache-Control": [ "no-cache" @@ -5625,23 +5521,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14798" + "14959" ], "x-ms-correlation-request-id": [ - "410b3eff-de95-497f-9228-3e6554842083" + "c1ddd8bb-85ee-423b-a6ed-1e70536a395e" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232806Z:410b3eff-de95-497f-9228-3e6554842083" + "CENTRALUS:20150604T014945Z:c1ddd8bb-85ee-423b-a6ed-1e70536a395e" ], "Date": [ - "Sun, 31 May 2015 23:28:05 GMT" + "Thu, 04 Jun 2015 01:49:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7266?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI2Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2816?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5664,16 +5560,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-request-id": [ - "695bb33f-7414-4b04-bab3-b73aeb2f4655" + "7f67b0d6-b157-4565-b13c-a374f9ed1d4e" ], "x-ms-correlation-request-id": [ - "695bb33f-7414-4b04-bab3-b73aeb2f4655" + "7f67b0d6-b157-4565-b13c-a374f9ed1d4e" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232809Z:695bb33f-7414-4b04-bab3-b73aeb2f4655" + "WESTUS:20150604T014945Z:7f67b0d6-b157-4565-b13c-a374f9ed1d4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5682,17 +5578,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:28:09 GMT" + "Thu, 04 Jun 2015 01:49:44 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TmpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5718,16 +5614,70 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14821" + "14887" + ], + "x-ms-request-id": [ + "c8de3ad6-aff8-443f-8b69-989709ce7f37" + ], + "x-ms-correlation-request-id": [ + "c8de3ad6-aff8-443f-8b69-989709ce7f37" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T014946Z:c8de3ad6-aff8-443f-8b69-989709ce7f37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 04 Jun 2015 01:49:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" ], "x-ms-request-id": [ - "d1df7640-9bcc-4c47-b7b1-d320996ec9c0" + "05fc0b52-be35-466e-85be-17292e309b75" ], "x-ms-correlation-request-id": [ - "d1df7640-9bcc-4c47-b7b1-d320996ec9c0" + "05fc0b52-be35-466e-85be-17292e309b75" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232810Z:d1df7640-9bcc-4c47-b7b1-d320996ec9c0" + "WESTUS:20150604T015001Z:05fc0b52-be35-466e-85be-17292e309b75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5736,17 +5686,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:28:09 GMT" + "Thu, 04 Jun 2015 01:50:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TmpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5772,16 +5722,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "14882" ], "x-ms-request-id": [ - "4ba41c77-4322-4616-b6a2-c9eea0b9384a" + "941d66d4-04e5-4f12-bc53-b53220708991" ], "x-ms-correlation-request-id": [ - "4ba41c77-4322-4616-b6a2-c9eea0b9384a" + "941d66d4-04e5-4f12-bc53-b53220708991" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232825Z:4ba41c77-4322-4616-b6a2-c9eea0b9384a" + "WESTUS:20150604T015016Z:941d66d4-04e5-4f12-bc53-b53220708991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5790,17 +5740,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:28:24 GMT" + "Thu, 04 Jun 2015 01:50:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TmpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5826,16 +5776,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14815" + "14881" ], "x-ms-request-id": [ - "910dad4f-4a60-43c2-bcec-e857362520a2" + "bc96f5ad-2a3d-419d-a009-fc45622ed406" ], "x-ms-correlation-request-id": [ - "910dad4f-4a60-43c2-bcec-e857362520a2" + "bc96f5ad-2a3d-419d-a009-fc45622ed406" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232841Z:910dad4f-4a60-43c2-bcec-e857362520a2" + "WESTUS:20150604T015031Z:bc96f5ad-2a3d-419d-a009-fc45622ed406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5844,17 +5794,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:28:40 GMT" + "Thu, 04 Jun 2015 01:50:30 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TmpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5880,16 +5830,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14812" + "14878" ], "x-ms-request-id": [ - "470942de-386a-4ecd-bac5-5b9615c2ae04" + "8d852cfd-b073-4473-ac6d-5c8631b3683b" ], "x-ms-correlation-request-id": [ - "470942de-386a-4ecd-bac5-5b9615c2ae04" + "8d852cfd-b073-4473-ac6d-5c8631b3683b" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232856Z:470942de-386a-4ecd-bac5-5b9615c2ae04" + "WESTUS:20150604T015046Z:8d852cfd-b073-4473-ac6d-5c8631b3683b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5898,17 +5848,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:28:56 GMT" + "Thu, 04 Jun 2015 01:50:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TmpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5934,16 +5884,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14811" + "14875" ], "x-ms-request-id": [ - "0949adcb-316d-4ce6-b06f-6f9faa6c0c82" + "81b91376-012d-4922-81d9-abd632b1730d" ], "x-ms-correlation-request-id": [ - "0949adcb-316d-4ce6-b06f-6f9faa6c0c82" + "81b91376-012d-4922-81d9-abd632b1730d" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232911Z:0949adcb-316d-4ce6-b06f-6f9faa6c0c82" + "WESTUS:20150604T015101Z:81b91376-012d-4922-81d9-abd632b1730d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5952,17 +5902,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:29:10 GMT" + "Thu, 04 Jun 2015 01:51:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TmpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5988,16 +5938,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "14872" ], "x-ms-request-id": [ - "36bed5ba-90b7-4b91-8a8c-1a2b8544cd9a" + "a2e0cb04-4a79-4945-a45b-30316bdcfbb7" ], "x-ms-correlation-request-id": [ - "36bed5ba-90b7-4b91-8a8c-1a2b8544cd9a" + "a2e0cb04-4a79-4945-a45b-30316bdcfbb7" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232927Z:36bed5ba-90b7-4b91-8a8c-1a2b8544cd9a" + "WESTUS:20150604T015116Z:a2e0cb04-4a79-4945-a45b-30316bdcfbb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6006,17 +5956,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:29:26 GMT" + "Thu, 04 Jun 2015 01:51:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNjYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TmpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6039,16 +5989,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14871" ], "x-ms-request-id": [ - "29d7a19c-f305-4eb2-ba36-a4aac617b9a4" + "ab89ecd6-03ce-46ef-aabf-d1124657bee3" ], "x-ms-correlation-request-id": [ - "29d7a19c-f305-4eb2-ba36-a4aac617b9a4" + "ab89ecd6-03ce-46ef-aabf-d1124657bee3" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232942Z:29d7a19c-f305-4eb2-ba36-a4aac617b9a4" + "WESTUS:20150604T015131Z:ab89ecd6-03ce-46ef-aabf-d1124657bee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6057,14 +6007,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:29:41 GMT" + "Thu, 04 Jun 2015 01:51:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7143?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzE0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7743?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -6090,16 +6040,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14806" + "14870" ], "x-ms-request-id": [ - "817924f5-dfb4-432e-8927-ef5ae5bc811c" + "f975a4a1-384a-4447-909f-599f906f3fcc" ], "x-ms-correlation-request-id": [ - "817924f5-dfb4-432e-8927-ef5ae5bc811c" + "f975a4a1-384a-4447-909f-599f906f3fcc" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232943Z:817924f5-dfb4-432e-8927-ef5ae5bc811c" + "WESTUS:20150604T015131Z:f975a4a1-384a-4447-909f-599f906f3fcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6108,14 +6058,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:29:42 GMT" + "Thu, 04 Jun 2015 01:51:31 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7143?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzE0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7743?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -6135,16 +6085,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14748" + "14828" ], "x-ms-request-id": [ - "ac1769c0-a4df-473a-84ed-11660c2e1b9d" + "58dc57a8-ceef-48d6-98c5-d506ae269f9d" ], "x-ms-correlation-request-id": [ - "ac1769c0-a4df-473a-84ed-11660c2e1b9d" + "58dc57a8-ceef-48d6-98c5-d506ae269f9d" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234357Z:ac1769c0-a4df-473a-84ed-11660c2e1b9d" + "WESTUS:20150604T020347Z:58dc57a8-ceef-48d6-98c5-d506ae269f9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6153,31 +6103,31 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:43:56 GMT" + "Thu, 04 Jun 2015 02:03:46 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7143?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzE0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7743?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143\",\r\n \"name\": \"pstestrg7143\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743\",\r\n \"name\": \"pstestrg7743\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6189,16 +6139,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-request-id": [ - "129f880f-039d-4dfe-afaa-34cd9236a3ec" + "175bc825-2ece-4502-94ec-206fabbc9dc8" ], "x-ms-correlation-request-id": [ - "129f880f-039d-4dfe-afaa-34cd9236a3ec" + "175bc825-2ece-4502-94ec-206fabbc9dc8" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232945Z:129f880f-039d-4dfe-afaa-34cd9236a3ec" + "WESTUS:20150604T015133Z:175bc825-2ece-4502-94ec-206fabbc9dc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6207,14 +6157,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:29:44 GMT" + "Thu, 04 Jun 2015 01:51:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6237,16 +6187,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14805" + "14869" ], "x-ms-request-id": [ - "cb8e5961-34b7-42ee-862f-16c96c6b5fc2" + "21c9b825-2330-41bf-873a-bbe5d19052a0" ], "x-ms-correlation-request-id": [ - "cb8e5961-34b7-42ee-862f-16c96c6b5fc2" + "21c9b825-2330-41bf-873a-bbe5d19052a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232945Z:cb8e5961-34b7-42ee-862f-16c96c6b5fc2" + "WESTUS:20150604T015133Z:21c9b825-2330-41bf-873a-bbe5d19052a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6255,14 +6205,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:29:44 GMT" + "Thu, 04 Jun 2015 01:51:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7143/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7743/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6288,16 +6238,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:0ff509d9-ed15-4208-94b7-9a1db93b13da" + "westus:7c018476-f690-42c6-87a6-431e2f3862eb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "14894" ], "x-ms-correlation-request-id": [ - "46c7828c-1897-447d-b731-8086188c827b" + "df655959-6e87-4520-bf3c-eccbf23e71ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T232945Z:46c7828c-1897-447d-b731-8086188c827b" + "WESTUS:20150604T015134Z:df655959-6e87-4520-bf3c-eccbf23e71ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6306,25 +6256,25 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:29:45 GMT" + "Thu, 04 Jun 2015 01:51:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Storage/storageAccounts/stopstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzE0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Storage/storageAccounts/stopstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East Asia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "88" + "91" ], "x-ms-client-request-id": [ - "eeee31fa-698b-4f67-8c90-3757e465d857" + "fe7a6cef-a562-4fee-8d29-7e2272a8cecd" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -6348,44 +6298,44 @@ "25" ], "x-ms-request-id": [ - "c25995bf-4909-4348-af33-802f6bbdf5d6" + "1cf63b42-a918-4c15-b87d-8bd47dc26e69" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/c25995bf-4909-4348-af33-802f6bbdf5d6?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/1cf63b42-a918-4c15-b87d-8bd47dc26e69?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "83a77077-2b1b-4e29-986f-1a0a8d4017fe" + "8cbcbedd-cb15-4dd6-8b21-cc4c6ba110fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233008Z:83a77077-2b1b-4e29-986f-1a0a8d4017fe" + "WESTUS:20150604T015141Z:8cbcbedd-cb15-4dd6-8b21-cc4c6ba110fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:30:07 GMT" + "Thu, 04 Jun 2015 01:51:41 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/c25995bf-4909-4348-af33-802f6bbdf5d6?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2MyNTk5NWJmLTQ5MDktNDM0OC1hZjMzLTgwMmY2YmJkZjVkNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/1cf63b42-a918-4c15-b87d-8bd47dc26e69?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzFjZjYzYjQyLWE5MTgtNGMxNS1iODdkLThiZDQ3ZGMyNmU2OT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51978d4d-c65c-4a05-a215-9d241bf58900" + "58e1f1a6-30e8-41f1-b310-13f00a1b247a" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -6409,53 +6359,53 @@ "25" ], "x-ms-request-id": [ - "198c6b8b-87bf-446d-939f-3b05140dc2ec" + "8d0e9fcc-e3d3-4fff-afa5-85a29d9be750" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/c25995bf-4909-4348-af33-802f6bbdf5d6?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/1cf63b42-a918-4c15-b87d-8bd47dc26e69?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "14910" ], "x-ms-correlation-request-id": [ - "8d5de894-a3aa-4396-979d-5b7affc7e6c0" + "5ea9f68f-87c0-4c68-97ba-2a2568420b05" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233009Z:8d5de894-a3aa-4396-979d-5b7affc7e6c0" + "WESTUS:20150604T015142Z:5ea9f68f-87c0-4c68-97ba-2a2568420b05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:30:08 GMT" + "Thu, 04 Jun 2015 01:51:42 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/c25995bf-4909-4348-af33-802f6bbdf5d6?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2MyNTk5NWJmLTQ5MDktNDM0OC1hZjMzLTgwMmY2YmJkZjVkNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/1cf63b42-a918-4c15-b87d-8bd47dc26e69?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzFjZjYzYjQyLWE5MTgtNGMxNS1iODdkLThiZDQ3ZGMyNmU2OT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "624e39f1-3c21-41ad-8d3e-dd7ad8f547e3" + "a1a4e203-4e81-4efc-94d0-f7e677de40fa" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "66" + "68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6467,7 +6417,7 @@ "no-cache" ], "x-ms-request-id": [ - "1da1027d-ded4-4602-9629-c91c3309890e" + "f40fac37-fd51-4bdf-870f-680b8c49a784" ], "Cache-Control": [ "no-cache" @@ -6477,40 +6427,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14805" + "14906" ], "x-ms-correlation-request-id": [ - "9dc5fdd1-05eb-4279-91f6-814bb055629a" + "5868ea13-115d-4c95-b148-0a3154383e2a" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233034Z:9dc5fdd1-05eb-4279-91f6-814bb055629a" + "WESTUS:20150604T015207Z:5868ea13-115d-4c95-b148-0a3154383e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:30:33 GMT" + "Thu, 04 Jun 2015 01:52:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Storage/storageAccounts/stopstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzE0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Storage/storageAccounts/stopstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f859f38f-bf0b-484c-9f24-648315a0915f" + "e10f0859-67d5-4ab9-a42b-95674c16b143" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Storage/storageAccounts/stopstestrg7143\",\r\n \"name\": \"stopstestrg7143\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7143.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7143.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7143.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"West US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-05-31T23:29:47.464595Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Storage/storageAccounts/stopstestrg7743\",\r\n \"name\": \"stopstestrg7743\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7743.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7743.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7743.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:51:38.5755007Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6522,7 +6472,7 @@ "no-cache" ], "x-ms-request-id": [ - "439d7ff3-9e3e-4c48-8219-6f624d4f96c9" + "953c1d63-9372-47a3-9f51-7643d6eb4e7a" ], "Cache-Control": [ "no-cache" @@ -6532,40 +6482,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14804" + "14905" ], "x-ms-correlation-request-id": [ - "be85e1f6-0e42-4681-9bf5-c1f1ee255656" + "7aeca25b-ed0d-4253-9ee8-789d5d9c6ae0" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233034Z:be85e1f6-0e42-4681-9bf5-c1f1ee255656" + "WESTUS:20150604T015207Z:7aeca25b-ed0d-4253-9ee8-789d5d9c6ae0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:30:33 GMT" + "Thu, 04 Jun 2015 01:52:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Storage/storageAccounts/stopstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzE0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Storage/storageAccounts/stopstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "696b1410-f8b9-4375-b315-6689bb9a065d" + "244a8b27-b279-4ff8-9589-308f61b9ed20" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Storage/storageAccounts/stopstestrg7143\",\r\n \"name\": \"stopstestrg7143\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7143.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7143.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7143.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"West US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-05-31T23:29:47.464595Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Storage/storageAccounts/stopstestrg7743\",\r\n \"name\": \"stopstestrg7743\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7743.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7743.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7743.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:51:38.5755007Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6577,7 +6527,7 @@ "no-cache" ], "x-ms-request-id": [ - "90082cf2-868a-4d24-953e-2a391082a2ea" + "0d079eb6-5d28-4acb-875f-31c30bf3c007" ], "Cache-Control": [ "no-cache" @@ -6587,26 +6537,26 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14803" + "14904" ], "x-ms-correlation-request-id": [ - "501cda79-26b0-4da6-ba06-ebb0e159da2b" + "c4716471-6bb4-41c2-bdc1-067a3e73a630" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233034Z:501cda79-26b0-4da6-ba06-ebb0e159da2b" + "WESTUS:20150604T015207Z:c4716471-6bb4-41c2-bdc1-067a3e73a630" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sun, 31 May 2015 23:30:33 GMT" + "Thu, 04 Jun 2015 01:52:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxNDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc3NDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6632,13 +6582,13 @@ "gateway" ], "x-ms-request-id": [ - "764c4128-fc68-4893-80c2-99eefdf4718c" + "d31acfaa-de41-42e0-bac9-86eb8e735921" ], "x-ms-correlation-request-id": [ - "764c4128-fc68-4893-80c2-99eefdf4718c" + "d31acfaa-de41-42e0-bac9-86eb8e735921" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233035Z:764c4128-fc68-4893-80c2-99eefdf4718c" + "WESTUS:20150604T015208Z:d31acfaa-de41-42e0-bac9-86eb8e735921" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6647,14 +6597,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:30:34 GMT" + "Thu, 04 Jun 2015 01:52:07 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxNDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc3NDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6662,10 +6612,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7143\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7143\",\r\n \"etag\": \"W/\\\"ac4c693a-adda-4fba-ab8c-7f106b6be24e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7143\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7143/subnets/subnetpstestrg7143\",\r\n \"etag\": \"W/\\\"ac4c693a-adda-4fba-ab8c-7f106b6be24e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743\",\r\n \"etag\": \"W/\\\"928fc10b-35e4-40d5-b673-dc663232082d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\",\r\n \"etag\": \"W/\\\"928fc10b-35e4-40d5-b673-dc663232082d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6677,7 +6627,7 @@ "no-cache" ], "x-ms-request-id": [ - "87746f5c-0f8b-491e-a65c-a53cb3379ba7" + "1dbad4ae-e47f-4148-b1e9-80a42d805cf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6686,30 +6636,30 @@ "no-cache" ], "ETag": [ - "W/\"ac4c693a-adda-4fba-ab8c-7f106b6be24e\"" + "W/\"928fc10b-35e4-40d5-b673-dc663232082d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14801" + "14895" ], "x-ms-correlation-request-id": [ - "a6b0ac4f-301b-49c5-98fa-e3f68554c105" + "89bcbbb8-9cb7-4640-9d5e-eb17eec563af" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233038Z:a6b0ac4f-301b-49c5-98fa-e3f68554c105" + "WESTUS:20150604T015214Z:89bcbbb8-9cb7-4640-9d5e-eb17eec563af" ], "Date": [ - "Sun, 31 May 2015 23:30:37 GMT" + "Thu, 04 Jun 2015 01:52:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxNDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc3NDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6717,10 +6667,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7143\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7143\",\r\n \"etag\": \"W/\\\"ac4c693a-adda-4fba-ab8c-7f106b6be24e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7143\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7143/subnets/subnetpstestrg7143\",\r\n \"etag\": \"W/\\\"ac4c693a-adda-4fba-ab8c-7f106b6be24e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743\",\r\n \"etag\": \"W/\\\"928fc10b-35e4-40d5-b673-dc663232082d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\",\r\n \"etag\": \"W/\\\"928fc10b-35e4-40d5-b673-dc663232082d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6732,7 +6682,7 @@ "no-cache" ], "x-ms-request-id": [ - "09ab728b-36c9-451f-a584-3154775e63d8" + "621c38bc-8727-4e7a-9e0c-c80475bc1de7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6741,47 +6691,47 @@ "no-cache" ], "ETag": [ - "W/\"ac4c693a-adda-4fba-ab8c-7f106b6be24e\"" + "W/\"928fc10b-35e4-40d5-b673-dc663232082d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14800" + "14894" ], "x-ms-correlation-request-id": [ - "03d76bed-7a96-4f72-a030-36164352723b" + "5dd57a3a-a655-4f10-9f1e-5f166518d21f" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233038Z:03d76bed-7a96-4f72-a030-36164352723b" + "WESTUS:20150604T015214Z:5dd57a3a-a655-4f10-9f1e-5f166518d21f" ], "Date": [ - "Sun, 31 May 2015 23:30:37 GMT" + "Thu, 04 Jun 2015 01:52:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxNDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc3NDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg7143\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg7143\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg7743\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg7743\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "500" + "503" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7143\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7143\",\r\n \"etag\": \"W/\\\"00d5bc96-bdd0-47d4-b2b1-4eeeb6e8dac2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7143\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7143/subnets/subnetpstestrg7143\",\r\n \"etag\": \"W/\\\"00d5bc96-bdd0-47d4-b2b1-4eeeb6e8dac2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743\",\r\n \"etag\": \"W/\\\"c2e78a4d-b5d8-4612-bd8b-2b4c900de5c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\",\r\n \"etag\": \"W/\\\"c2e78a4d-b5d8-4612-bd8b-2b4c900de5c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "960" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6796,10 +6746,10 @@ "10" ], "x-ms-request-id": [ - "dcc892c3-3c0d-415d-8342-f34d38a6c6a4" + "c0e47f76-4a08-4812-9e39-c068ac75aa0a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastus/operations/dcc892c3-3c0d-415d-8342-f34d38a6c6a4?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/c0e47f76-4a08-4812-9e39-c068ac75aa0a?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6815,20 +6765,20 @@ "1196" ], "x-ms-correlation-request-id": [ - "b12df425-10cc-4410-b8a6-9e8f024a16be" + "b2d1351d-ba1f-4979-9353-c0fb6e9be82c" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233037Z:b12df425-10cc-4410-b8a6-9e8f024a16be" + "WESTUS:20150604T015213Z:b2d1351d-ba1f-4979-9353-c0fb6e9be82c" ], "Date": [ - "Sun, 31 May 2015 23:30:37 GMT" + "Thu, 04 Jun 2015 01:52:12 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastus/operations/dcc892c3-3c0d-415d-8342-f34d38a6c6a4?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGNjODkyYzMtM2MwZC00MTVkLTgzNDItZjM0ZDM4YTZjNmE0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/c0e47f76-4a08-4812-9e39-c068ac75aa0a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jMGU0N2Y3Ni00YTA4LTQ4MTItOWUzOS1jMDY4YWM3NWFhMGE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6854,7 +6804,7 @@ "no-cache" ], "x-ms-request-id": [ - "90040e15-cac0-4002-a880-bbf1156314f4" + "08e04927-47d4-44c7-beb4-5f9f80b8c2e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6867,23 +6817,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14802" + "14896" ], "x-ms-correlation-request-id": [ - "b7c27543-fcea-49ed-8560-4cf13b011b2f" + "075ce2b3-f786-4e5f-a9f6-86ebeba251d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233038Z:b7c27543-fcea-49ed-8560-4cf13b011b2f" + "WESTUS:20150604T015214Z:075ce2b3-f786-4e5f-a9f6-86ebeba251d4" ], "Date": [ - "Sun, 31 May 2015 23:30:37 GMT" + "Thu, 04 Jun 2015 01:52:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzE0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6909,13 +6859,13 @@ "gateway" ], "x-ms-request-id": [ - "af54a65c-7bc8-41e7-b918-0fcbb40f5e54" + "dd4381be-d0af-420c-915c-fed8ba3df54b" ], "x-ms-correlation-request-id": [ - "af54a65c-7bc8-41e7-b918-0fcbb40f5e54" + "dd4381be-d0af-420c-915c-fed8ba3df54b" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233038Z:af54a65c-7bc8-41e7-b918-0fcbb40f5e54" + "WESTUS:20150604T015214Z:dd4381be-d0af-420c-915c-fed8ba3df54b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6924,14 +6874,14 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:30:37 GMT" + "Thu, 04 Jun 2015 01:52:13 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzE0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6939,10 +6889,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg7143\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7143\",\r\n \"etag\": \"W/\\\"ac64c3db-7d1f-4042-a62b-48fa55b60ffc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7143/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ac64c3db-7d1f-4042-a62b-48fa55b60ffc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7143/subnets/subnetpstestrg7143\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743\",\r\n \"etag\": \"W/\\\"2a036c74-b5ac-4ea9-b1c8-8aa234e37dfb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2a036c74-b5ac-4ea9-b1c8-8aa234e37dfb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1092" + "1094" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6954,7 +6904,7 @@ "no-cache" ], "x-ms-request-id": [ - "b2fca4c6-e594-45cd-8c66-484e2b1f61e8" + "edcad1da-eaa4-44dd-99a3-e602f1d0d511" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6963,47 +6913,47 @@ "no-cache" ], "ETag": [ - "W/\"ac64c3db-7d1f-4042-a62b-48fa55b60ffc\"" + "W/\"2a036c74-b5ac-4ea9-b1c8-8aa234e37dfb\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14797" + "14891" ], "x-ms-correlation-request-id": [ - "35e4ac5f-12e6-427c-bd8b-12cf1796ac59" + "5ab86dc6-9a08-4598-82e8-747df45d3909" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233041Z:35e4ac5f-12e6-427c-bd8b-12cf1796ac59" + "WESTUS:20150604T015219Z:5ab86dc6-9a08-4598-82e8-747df45d3909" ], "Date": [ - "Sun, 31 May 2015 23:30:40 GMT" + "Thu, 04 Jun 2015 01:52:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzE0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7143/subnets/subnetpstestrg7143\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg7143\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg7743\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "647" + "650" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg7143\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7143\",\r\n \"etag\": \"W/\\\"ac64c3db-7d1f-4042-a62b-48fa55b60ffc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7143/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ac64c3db-7d1f-4042-a62b-48fa55b60ffc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7143/subnets/subnetpstestrg7143\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743\",\r\n \"etag\": \"W/\\\"2a036c74-b5ac-4ea9-b1c8-8aa234e37dfb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2a036c74-b5ac-4ea9-b1c8-8aa234e37dfb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1092" + "1094" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7015,10 +6965,10 @@ "no-cache" ], "x-ms-request-id": [ - "a4fe102a-f00f-4063-b34e-d9f207d88207" + "c83f38dc-2641-4f11-b8cf-b31bee28afd2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastus/operations/a4fe102a-f00f-4063-b34e-d9f207d88207?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/c83f38dc-2641-4f11-b8cf-b31bee28afd2?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7034,20 +6984,20 @@ "1195" ], "x-ms-correlation-request-id": [ - "770ae5c1-7a83-4b32-8ee2-197f21abad79" + "a28f5606-e39d-4309-bcfc-46284fa1edad" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233040Z:770ae5c1-7a83-4b32-8ee2-197f21abad79" + "WESTUS:20150604T015218Z:a28f5606-e39d-4309-bcfc-46284fa1edad" ], "Date": [ - "Sun, 31 May 2015 23:30:40 GMT" + "Thu, 04 Jun 2015 01:52:18 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastus/operations/a4fe102a-f00f-4063-b34e-d9f207d88207?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTRmZTEwMmEtZjAwZi00MDYzLWIzNGUtZDlmMjA3ZDg4MjA3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/c83f38dc-2641-4f11-b8cf-b31bee28afd2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jODNmMzhkYy0yNjQxLTRmMTEtYjhjZi1iMzFiZWUyOGFmZDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7073,7 +7023,7 @@ "no-cache" ], "x-ms-request-id": [ - "149e49cd-c266-4cd3-8544-820476dcd635" + "5f96fe33-530b-47e0-a3f4-264ada6972ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7086,40 +7036,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14798" + "14892" ], "x-ms-correlation-request-id": [ - "dff95e56-28a2-42fe-a741-a9028f52a649" + "73295d5a-36e2-4652-a623-3e81132f0a08" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233041Z:dff95e56-28a2-42fe-a741-a9028f52a649" + "WESTUS:20150604T015219Z:73295d5a-36e2-4652-a623-3e81132f0a08" ], "Date": [ - "Sun, 31 May 2015 23:30:40 GMT" + "Thu, 04 Jun 2015 01:52:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Compute/virtualMachines/vmpstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTQzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Compute/virtualMachines/vmpstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3NzQzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A5\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7143.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7143\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg7143\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7143\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg7143\",\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7743.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7743\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg7743\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg7743\",\r\n \"location\": \"East Asia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1105" + "1108" ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A5\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7143.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7143\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7143\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Compute/virtualMachines/vmpstestrg7143\",\r\n \"name\": \"vmpstestrg7143\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7743.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7743\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Compute/virtualMachines/vmpstestrg7743\",\r\n \"name\": \"vmpstestrg7743\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1358" + "1360" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7131,13 +7081,13 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8daca5a6-2de8-4cb4-99e5-66dfda7c8a76" + "053cf565-e628-4af6-828f-cf27881593ec" ], "Cache-Control": [ "no-cache" @@ -7147,231 +7097,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "d61923b5-19be-4994-af81-426919939c99" + "f80ef116-e927-46c6-9fd0-205ea51d2dae" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233045Z:d61923b5-19be-4994-af81-426919939c99" + "WESTUS:20150604T015225Z:f80ef116-e927-46c6-9fd0-205ea51d2dae" ], "Date": [ - "Sun, 31 May 2015 23:30:45 GMT" + "Thu, 04 Jun 2015 01:52:25 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "e4cdf631-8587-46bf-a571-0cae529e11a3" - ], - "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": [ - "1dbc8e70-e2b7-4e16-99cc-e43ee13d993f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150531T233045Z:1dbc8e70-e2b7-4e16-99cc-e43ee13d993f" - ], - "Date": [ - "Sun, 31 May 2015 23:30:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "5353b5f6-419b-4197-89b4-49034496ad12" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14812" - ], - "x-ms-correlation-request-id": [ - "06b8f798-91cd-441f-b405-8b8b0f0de1e3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150531T233116Z:06b8f798-91cd-441f-b405-8b8b0f0de1e3" - ], - "Date": [ - "Sun, 31 May 2015 23:31:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "74085a4b-85b4-4d0e-bb92-00c42dbdb742" - ], - "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": [ - "d23e6c42-0aaf-43e0-a943-37321574090e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150531T233146Z:d23e6c42-0aaf-43e0-a943-37321574090e" - ], - "Date": [ - "Sun, 31 May 2015 23:31:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "42bed9a0-ac81-469f-8e2f-151e9fecab09" - ], - "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": [ - "2db87453-211c-4076-8675-0a0aa38ebc8f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150531T233216Z:2db87453-211c-4076-8675-0a0aa38ebc8f" - ], - "Date": [ - "Sun, 31 May 2015 23:32:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7379,7 +7121,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7397,7 +7139,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4187f4cd-b9e4-46ef-a50b-a8a8d9245493" + "a43aa42b-f3a8-4138-9907-90194c8acb11" ], "Cache-Control": [ "no-cache" @@ -7407,23 +7149,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14804" + "14898" ], "x-ms-correlation-request-id": [ - "6b87b871-00dd-4927-a6f8-7709504f191a" + "09355321-b486-46b6-b625-89f859926ceb" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233247Z:6b87b871-00dd-4927-a6f8-7709504f191a" + "WESTUS:20150604T015226Z:09355321-b486-46b6-b625-89f859926ceb" ], "Date": [ - "Sun, 31 May 2015 23:32:46 GMT" + "Thu, 04 Jun 2015 01:52:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7431,7 +7173,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7449,7 +7191,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22c212be-401a-4f9b-ae0a-a1d97416bf4f" + "a04cd51e-8427-4253-a9d4-30b2b714fdd5" ], "Cache-Control": [ "no-cache" @@ -7459,23 +7201,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14801" + "14896" ], "x-ms-correlation-request-id": [ - "843b084a-1870-4b01-91bf-87f6bdfa0448" + "3a344e71-5d2b-4d51-824f-fd6bd7a1ed01" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233317Z:843b084a-1870-4b01-91bf-87f6bdfa0448" + "WESTUS:20150604T015257Z:3a344e71-5d2b-4d51-824f-fd6bd7a1ed01" ], "Date": [ - "Sun, 31 May 2015 23:33:16 GMT" + "Thu, 04 Jun 2015 01:52:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7483,7 +7225,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7501,7 +7243,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74f443e9-4b64-46be-bd03-09c4919d667b" + "536e624b-ea37-416b-9f45-31f0198873c0" ], "Cache-Control": [ "no-cache" @@ -7511,23 +7253,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14799" + "14894" ], "x-ms-correlation-request-id": [ - "eaf911ed-f2de-46a3-95cf-d457ea0a98f1" + "3e3e0179-ae43-45d1-a9a5-69b0d17086bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233347Z:eaf911ed-f2de-46a3-95cf-d457ea0a98f1" + "WESTUS:20150604T015327Z:3e3e0179-ae43-45d1-a9a5-69b0d17086bd" ], "Date": [ - "Sun, 31 May 2015 23:33:47 GMT" + "Thu, 04 Jun 2015 01:53:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7535,7 +7277,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7553,7 +7295,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc5cf81d-b9fa-4e75-8a02-e77a6b498f28" + "e7faf272-9fe3-4e0f-93cd-b47c41f45c4e" ], "Cache-Control": [ "no-cache" @@ -7563,23 +7305,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14797" + "14891" ], "x-ms-correlation-request-id": [ - "08fdf0c0-ef22-4129-a9eb-7be650a8b5b4" + "b5290b93-ff78-4166-9009-75b246623027" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233418Z:08fdf0c0-ef22-4129-a9eb-7be650a8b5b4" + "WESTUS:20150604T015358Z:b5290b93-ff78-4166-9009-75b246623027" ], "Date": [ - "Sun, 31 May 2015 23:34:17 GMT" + "Thu, 04 Jun 2015 01:53:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7587,7 +7329,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7605,7 +7347,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f0e0346-3e65-4842-a0ff-e6589be38bd9" + "08f1dc23-2672-4301-8a8f-86b963031a0f" ], "Cache-Control": [ "no-cache" @@ -7615,23 +7357,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14793" + "14888" ], "x-ms-correlation-request-id": [ - "8742e3a8-22ca-427b-ae4b-5c329e2e5cfa" + "cfb2e8be-8c21-4523-ac7b-cbbbe95261f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233448Z:8742e3a8-22ca-427b-ae4b-5c329e2e5cfa" + "WESTUS:20150604T015429Z:cfb2e8be-8c21-4523-ac7b-cbbbe95261f8" ], "Date": [ - "Sun, 31 May 2015 23:34:48 GMT" + "Thu, 04 Jun 2015 01:54:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7639,7 +7381,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7657,7 +7399,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a57f774d-31ed-42d2-8a77-5f0349e59dcd" + "e180373e-2411-4246-8261-190e8cd10988" ], "Cache-Control": [ "no-cache" @@ -7667,23 +7409,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14791" + "14884" ], "x-ms-correlation-request-id": [ - "c66170e1-34c3-4185-8bf0-14f635ed85bc" + "fdb46a53-ddae-4d4a-a290-f5ec19d11b0f" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233519Z:c66170e1-34c3-4185-8bf0-14f635ed85bc" + "WESTUS:20150604T015459Z:fdb46a53-ddae-4d4a-a290-f5ec19d11b0f" ], "Date": [ - "Sun, 31 May 2015 23:35:18 GMT" + "Thu, 04 Jun 2015 01:54:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7691,7 +7433,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7709,7 +7451,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71861c38-a6bf-469a-a950-03f7a39cf924" + "571e863f-5bd4-455e-8e1b-0c2fb4b04883" ], "Cache-Control": [ "no-cache" @@ -7719,23 +7461,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14881" ], "x-ms-correlation-request-id": [ - "5578ab09-5f7e-409a-91b0-2716d4a6eab8" + "4842d26c-7fc0-41e5-a6e6-43389f8e6058" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233549Z:5578ab09-5f7e-409a-91b0-2716d4a6eab8" + "WESTUS:20150604T015530Z:4842d26c-7fc0-41e5-a6e6-43389f8e6058" ], "Date": [ - "Sun, 31 May 2015 23:35:48 GMT" + "Thu, 04 Jun 2015 01:55:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7743,7 +7485,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7761,7 +7503,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "812ef201-50eb-436e-9f5d-292355d8b8ba" + "4b93a368-acc4-4a12-b72d-d946c46a99e7" ], "Cache-Control": [ "no-cache" @@ -7771,23 +7513,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14786" + "14877" ], "x-ms-correlation-request-id": [ - "a48a38b5-cf82-4769-b7a8-f2a1365a06be" + "40c8e0a3-c5ab-4a05-a5bd-7c4967573008" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233619Z:a48a38b5-cf82-4769-b7a8-f2a1365a06be" + "WESTUS:20150604T015601Z:40c8e0a3-c5ab-4a05-a5bd-7c4967573008" ], "Date": [ - "Sun, 31 May 2015 23:36:18 GMT" + "Thu, 04 Jun 2015 01:56:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7795,7 +7537,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7813,7 +7555,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d392dbd4-8a4d-4d24-a612-5df3ffbf381e" + "9ac03641-7cc8-4772-9ba5-8032cd2cf466" ], "Cache-Control": [ "no-cache" @@ -7823,23 +7565,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14783" + "14874" ], "x-ms-correlation-request-id": [ - "a09fd783-2f78-4253-8058-2c6e85dd79fa" + "be14d946-3afa-45f3-ab2a-bc6772a5dfc1" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233650Z:a09fd783-2f78-4253-8058-2c6e85dd79fa" + "WESTUS:20150604T015631Z:be14d946-3afa-45f3-ab2a-bc6772a5dfc1" ], "Date": [ - "Sun, 31 May 2015 23:36:49 GMT" + "Thu, 04 Jun 2015 01:56:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7847,7 +7589,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7865,7 +7607,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41522199-a57d-4a38-bbf0-9f78dad07539" + "64224d0a-81b0-46e3-8e3c-c7e203ff1adb" ], "Cache-Control": [ "no-cache" @@ -7875,23 +7617,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14871" ], "x-ms-correlation-request-id": [ - "9530ba6b-7687-4ab1-8808-c96c17cbe8a1" + "230a8551-5f64-44a3-8a0e-54f0e9118c59" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233720Z:9530ba6b-7687-4ab1-8808-c96c17cbe8a1" + "WESTUS:20150604T015702Z:230a8551-5f64-44a3-8a0e-54f0e9118c59" ], "Date": [ - "Sun, 31 May 2015 23:37:19 GMT" + "Thu, 04 Jun 2015 01:57:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7899,7 +7641,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7917,7 +7659,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fccf996d-11e2-4c26-83e6-2334798c505b" + "cf4f9c14-bbd2-451f-92bd-42e288fb2893" ], "Cache-Control": [ "no-cache" @@ -7927,23 +7669,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14865" ], "x-ms-correlation-request-id": [ - "2b1d1c12-8fc5-47a3-8710-f1e9f207154a" + "ee08324f-dbf2-4d91-857d-2945e6ecc68c" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233751Z:2b1d1c12-8fc5-47a3-8710-f1e9f207154a" + "WESTUS:20150604T015733Z:ee08324f-dbf2-4d91-857d-2945e6ecc68c" ], "Date": [ - "Sun, 31 May 2015 23:37:50 GMT" + "Thu, 04 Jun 2015 01:57:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7951,7 +7693,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7969,7 +7711,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec65cab2-4772-4bc0-b20d-a62e64f91a66" + "8f7799f7-9415-4c70-b2d1-ae6c1bf67cd3" ], "Cache-Control": [ "no-cache" @@ -7979,23 +7721,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14776" + "14862" ], "x-ms-correlation-request-id": [ - "2135ab9a-ddd5-4654-b4e4-6f77a4f334d4" + "ccf1d211-25ca-44bc-8f16-9735834d59e6" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233821Z:2135ab9a-ddd5-4654-b4e4-6f77a4f334d4" + "WESTUS:20150604T015803Z:ccf1d211-25ca-44bc-8f16-9735834d59e6" ], "Date": [ - "Sun, 31 May 2015 23:38:21 GMT" + "Thu, 04 Jun 2015 01:58:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8003,7 +7745,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -8021,7 +7763,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfd5d025-9d28-4a39-83f7-05186fde71ca" + "d4aa8433-ef84-450d-abc3-18d3a376eeaf" ], "Cache-Control": [ "no-cache" @@ -8031,23 +7773,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14771" + "14858" ], "x-ms-correlation-request-id": [ - "630fb46c-455b-45e1-9e4c-83bdc8d2bcce" + "2f3c6f9e-d9e2-4721-ac32-41a8cb0dfdec" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233851Z:630fb46c-455b-45e1-9e4c-83bdc8d2bcce" + "WESTUS:20150604T015834Z:2f3c6f9e-d9e2-4721-ac32-41a8cb0dfdec" ], "Date": [ - "Sun, 31 May 2015 23:38:51 GMT" + "Thu, 04 Jun 2015 01:58:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8055,7 +7797,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -8073,7 +7815,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "390e3804-6f9b-41f5-aaeb-47b550f967a0" + "be4c15f9-00de-4540-af31-7f94140bad53" ], "Cache-Control": [ "no-cache" @@ -8083,23 +7825,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14768" + "14855" ], "x-ms-correlation-request-id": [ - "2c648518-663a-4fd2-9b3b-8f1f7f6192cf" + "6e8975f6-3693-4026-ba7e-91b3d2c052d1" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233922Z:2c648518-663a-4fd2-9b3b-8f1f7f6192cf" + "WESTUS:20150604T015905Z:6e8975f6-3693-4026-ba7e-91b3d2c052d1" ], "Date": [ - "Sun, 31 May 2015 23:39:22 GMT" + "Thu, 04 Jun 2015 01:59:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8107,7 +7849,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -8125,7 +7867,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e67b8ca2-3c13-44c4-bbd7-48aab0627a69" + "990b2dbc-4a87-4301-8504-43aa01b69850" ], "Cache-Control": [ "no-cache" @@ -8135,23 +7877,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "14852" ], "x-ms-correlation-request-id": [ - "5d2314ae-5d12-4698-8b7d-1a8bb8ca4f7d" + "e925b64d-a2dd-4d0e-8983-bf6be96287d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T233952Z:5d2314ae-5d12-4698-8b7d-1a8bb8ca4f7d" + "WESTUS:20150604T015935Z:e925b64d-a2dd-4d0e-8983-bf6be96287d6" ], "Date": [ - "Sun, 31 May 2015 23:39:52 GMT" + "Thu, 04 Jun 2015 01:59:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8159,7 +7901,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -8177,7 +7919,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc058ba5-f716-449c-97a1-48e65691b803" + "d2ce31cc-2852-47a9-85a3-eb0390b9781f" ], "Cache-Control": [ "no-cache" @@ -8187,23 +7929,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" + "14850" ], "x-ms-correlation-request-id": [ - "3e0304fd-0b65-4010-a1e7-e24f42bc189b" + "0d139f73-5fde-44bb-b408-b01c98db2170" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234023Z:3e0304fd-0b65-4010-a1e7-e24f42bc189b" + "WESTUS:20150604T020006Z:0d139f73-5fde-44bb-b408-b01c98db2170" ], "Date": [ - "Sun, 31 May 2015 23:40:22 GMT" + "Thu, 04 Jun 2015 02:00:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8211,7 +7953,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -8229,7 +7971,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f719e39-d331-4f60-812a-ccdb462e45c1" + "ca4316a8-d143-495a-b7d8-9eebacb153e8" ], "Cache-Control": [ "no-cache" @@ -8239,23 +7981,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14761" + "14849" ], "x-ms-correlation-request-id": [ - "2ef83223-509e-4b19-820b-bd1be573d0ce" + "cbc0bda5-a097-47be-92cb-fc88077705ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234053Z:2ef83223-509e-4b19-820b-bd1be573d0ce" + "WESTUS:20150604T020037Z:cbc0bda5-a097-47be-92cb-fc88077705ab" ], "Date": [ - "Sun, 31 May 2015 23:40:53 GMT" + "Thu, 04 Jun 2015 02:00:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/8daca5a6-2de8-4cb4-99e5-66dfda7c8a76?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGRhY2E1YTYtMmRlOC00Y2I0LTk5ZTUtNjZkZmRhN2M4YTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8263,7 +8005,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8daca5a6-2de8-4cb4-99e5-66dfda7c8a76\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-05-31T16:30:43.9937373-07:00\",\r\n \"endTime\": \"2015-05-31T16:41:01.3298061-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\",\r\n \"endTime\": \"2015-06-03T19:00:46.4433985-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -8281,7 +8023,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4067396b-2724-4eee-a5e5-298c505a0df7" + "e89f1d8c-10dc-4483-98d4-ffd4eaa2191b" ], "Cache-Control": [ "no-cache" @@ -8291,23 +8033,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14758" + "14845" ], "x-ms-correlation-request-id": [ - "f88a7324-311d-44e0-9250-c1721b152cf9" + "d92caef2-a897-4caa-98ae-51d8191a084b" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234123Z:f88a7324-311d-44e0-9250-c1721b152cf9" + "WESTUS:20150604T020107Z:d92caef2-a897-4caa-98ae-51d8191a084b" ], "Date": [ - "Sun, 31 May 2015 23:41:23 GMT" + "Thu, 04 Jun 2015 02:01:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Compute/virtualMachines/vmpstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTQzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Compute/virtualMachines/vmpstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3NzQzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8315,10 +8057,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A5\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7143.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7143\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7143\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Compute/virtualMachines/vmpstestrg7143\",\r\n \"name\": \"vmpstestrg7143\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7743.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7743\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Compute/virtualMachines/vmpstestrg7743\",\r\n \"name\": \"vmpstestrg7743\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1359" + "1361" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8333,7 +8075,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b783aa7-5e35-4bec-95a3-45923bd9ea65" + "182918ef-cd04-41e8-abcc-a036279f3d12" ], "Cache-Control": [ "no-cache" @@ -8343,23 +8085,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14757" + "14844" ], "x-ms-correlation-request-id": [ - "6b517c48-3699-4375-a625-7d0e27024d83" + "0977ae60-e3c3-49cd-b4e3-fbb1c50c45fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234123Z:6b517c48-3699-4375-a625-7d0e27024d83" + "WESTUS:20150604T020108Z:0977ae60-e3c3-49cd-b4e3-fbb1c50c45fd" ], "Date": [ - "Sun, 31 May 2015 23:41:23 GMT" + "Thu, 04 Jun 2015 02:01:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7143/providers/Microsoft.Compute/virtualMachines/vmpstestrg7143?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTQzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Compute/virtualMachines/vmpstestrg7743?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3NzQzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -8379,42 +8121,42 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/9225d763-462f-449e-b500-3a1385589164?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9225d763-462f-449e-b500-3a1385589164" + "a34dd573-768b-4ed8-8213-d16973c35ea5" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/9225d763-462f-449e-b500-3a1385589164?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "1ea860b2-c573-43df-bb84-b1eff09504b2" + "189e0222-1b65-40d9-b2ae-b5f1aba2ce02" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234125Z:1ea860b2-c573-43df-bb84-b1eff09504b2" + "WESTUS:20150604T020112Z:189e0222-1b65-40d9-b2ae-b5f1aba2ce02" ], "Date": [ - "Sun, 31 May 2015 23:41:24 GMT" + "Thu, 04 Jun 2015 02:01:12 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/9225d763-462f-449e-b500-3a1385589164?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTIyNWQ3NjMtNDYyZi00NDllLWI1MDAtM2ExMzg1NTg5MTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8422,10 +8164,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9225d763-462f-449e-b500-3a1385589164\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:41:24.6738095-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8440,7 +8182,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f1c6d5b-7676-4e3f-a452-7f4047d1cba1" + "281c7a84-d8c4-40f8-838f-b3b7eda87968" ], "Cache-Control": [ "no-cache" @@ -8450,23 +8192,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14756" + "14843" ], "x-ms-correlation-request-id": [ - "42aae409-bbf3-457d-a9c1-f1bb204d60e7" + "f7f0acc4-44d5-4c8c-ad0b-e1dac787d0ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234126Z:42aae409-bbf3-457d-a9c1-f1bb204d60e7" + "WESTUS:20150604T020113Z:f7f0acc4-44d5-4c8c-ad0b-e1dac787d0ef" ], "Date": [ - "Sun, 31 May 2015 23:41:25 GMT" + "Thu, 04 Jun 2015 02:01:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/9225d763-462f-449e-b500-3a1385589164?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTIyNWQ3NjMtNDYyZi00NDllLWI1MDAtM2ExMzg1NTg5MTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8474,10 +8216,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9225d763-462f-449e-b500-3a1385589164\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:41:24.6738095-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8492,7 +8234,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "536014f5-1f94-4aa7-8185-cc21a33622b2" + "884af6d4-1177-4154-80aa-1b744823d4eb" ], "Cache-Control": [ "no-cache" @@ -8502,23 +8244,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14752" + "14839" ], "x-ms-correlation-request-id": [ - "4afe61c9-f727-4abf-8ec9-edb63f9fd4f7" + "532bf656-cda7-42d0-a66e-91eecc60b0b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234156Z:4afe61c9-f727-4abf-8ec9-edb63f9fd4f7" + "WESTUS:20150604T020143Z:532bf656-cda7-42d0-a66e-91eecc60b0b9" ], "Date": [ - "Sun, 31 May 2015 23:41:56 GMT" + "Thu, 04 Jun 2015 02:01:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/9225d763-462f-449e-b500-3a1385589164?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTIyNWQ3NjMtNDYyZi00NDllLWI1MDAtM2ExMzg1NTg5MTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8526,10 +8268,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9225d763-462f-449e-b500-3a1385589164\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:41:24.6738095-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8544,7 +8286,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76cba1a1-c982-4a49-81de-99c15108fc14" + "b93eda54-5d4a-4e33-b867-996ed1fcf242" ], "Cache-Control": [ "no-cache" @@ -8554,23 +8296,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14750" + "14838" ], "x-ms-correlation-request-id": [ - "dd87af8c-b5c7-4f76-b5c9-4964f8c03343" + "8c7bac52-f85b-41ed-bdec-8e45c137c25d" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234226Z:dd87af8c-b5c7-4f76-b5c9-4964f8c03343" + "WESTUS:20150604T020214Z:8c7bac52-f85b-41ed-bdec-8e45c137c25d" ], "Date": [ - "Sun, 31 May 2015 23:42:26 GMT" + "Thu, 04 Jun 2015 02:02:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/9225d763-462f-449e-b500-3a1385589164?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTIyNWQ3NjMtNDYyZi00NDllLWI1MDAtM2ExMzg1NTg5MTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8578,10 +8320,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9225d763-462f-449e-b500-3a1385589164\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:41:24.6738095-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8596,7 +8338,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef08cd11-892a-46b9-8fd7-713994f45b3c" + "5bb3247b-d36d-4533-924f-dd5396b395dd" ], "Cache-Control": [ "no-cache" @@ -8606,23 +8348,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14749" + "14833" ], "x-ms-correlation-request-id": [ - "9ea75493-d21c-4b95-ad22-b5bd5fc50911" + "2ad3a072-11ae-4914-8179-f3c07c097e8e" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234257Z:9ea75493-d21c-4b95-ad22-b5bd5fc50911" + "WESTUS:20150604T020244Z:2ad3a072-11ae-4914-8179-f3c07c097e8e" ], "Date": [ - "Sun, 31 May 2015 23:42:56 GMT" + "Thu, 04 Jun 2015 02:02:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/9225d763-462f-449e-b500-3a1385589164?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTIyNWQ3NjMtNDYyZi00NDllLWI1MDAtM2ExMzg1NTg5MTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8630,10 +8372,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9225d763-462f-449e-b500-3a1385589164\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-05-31T16:41:24.6738095-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8648,7 +8390,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cedfcf77-d0e8-47fd-a590-d52ac8e5ddb5" + "fd619962-d558-47e2-bc43-b8d3e6e92e23" ], "Cache-Control": [ "no-cache" @@ -8658,23 +8400,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14746" + "14830" ], "x-ms-correlation-request-id": [ - "cdc736dc-4869-4cde-abc3-50f8253e66a0" + "54673ab6-9b47-4142-9ae9-e6e535a2fbce" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234327Z:cdc736dc-4869-4cde-abc3-50f8253e66a0" + "WESTUS:20150604T020316Z:54673ab6-9b47-4142-9ae9-e6e535a2fbce" ], "Date": [ - "Sun, 31 May 2015 23:43:27 GMT" + "Thu, 04 Jun 2015 02:03:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/operations/9225d763-462f-449e-b500-3a1385589164?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTIyNWQ3NjMtNDYyZi00NDllLWI1MDAtM2ExMzg1NTg5MTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8682,7 +8424,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9225d763-462f-449e-b500-3a1385589164\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-05-31T16:41:24.6738095-07:00\",\r\n \"endTime\": \"2015-05-31T16:43:36.566147-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\",\r\n \"endTime\": \"2015-06-03T19:03:22.3799438-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "190" @@ -8700,7 +8442,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0458e6a0-2abd-4879-9313-a1ff6d357302" + "88bc86a0-20bc-4952-8617-969c989b619c" ], "Cache-Control": [ "no-cache" @@ -8710,23 +8452,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14827" ], "x-ms-correlation-request-id": [ - "610481af-bf39-4ce3-8feb-f151e1476fd7" + "69defbac-48f0-40bf-87ff-b8bb90d9bf8b" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234357Z:610481af-bf39-4ce3-8feb-f151e1476fd7" + "WESTUS:20150604T020347Z:69defbac-48f0-40bf-87ff-b8bb90d9bf8b" ], "Date": [ - "Sun, 31 May 2015 23:43:57 GMT" + "Thu, 04 Jun 2015 02:03:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7143?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzE0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7743?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -8749,70 +8491,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-request-id": [ - "efee00c4-5e43-44f7-bc1f-0d255260d478" - ], - "x-ms-correlation-request-id": [ - "efee00c4-5e43-44f7-bc1f-0d255260d478" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150531T234359Z:efee00c4-5e43-44f7-bc1f-0d255260d478" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 31 May 2015 23:43:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" + "1189" ], "x-ms-request-id": [ - "729050ce-d77a-4a74-9d43-0137ae620a47" + "d117f0c9-8005-4d2d-b989-961a3ad606c6" ], "x-ms-correlation-request-id": [ - "729050ce-d77a-4a74-9d43-0137ae620a47" + "d117f0c9-8005-4d2d-b989-961a3ad606c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234359Z:729050ce-d77a-4a74-9d43-0137ae620a47" + "WESTUS:20150604T020350Z:d117f0c9-8005-4d2d-b989-961a3ad606c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8821,17 +8509,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:43:58 GMT" + "Thu, 04 Jun 2015 02:03:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8857,16 +8545,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14827" ], "x-ms-request-id": [ - "072c9d78-0743-416a-804a-cac0cf8c45b0" + "fdd4c8f5-efbf-401b-939c-d764dadfe659" ], "x-ms-correlation-request-id": [ - "072c9d78-0743-416a-804a-cac0cf8c45b0" + "fdd4c8f5-efbf-401b-939c-d764dadfe659" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234414Z:072c9d78-0743-416a-804a-cac0cf8c45b0" + "WESTUS:20150604T020350Z:fdd4c8f5-efbf-401b-939c-d764dadfe659" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8875,17 +8563,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:44:14 GMT" + "Thu, 04 Jun 2015 02:03:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8911,16 +8599,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14826" ], "x-ms-request-id": [ - "70176382-3629-4331-b4b9-60d419a273e6" + "5f6d024f-5a43-4c23-8dd3-61369b76220e" ], "x-ms-correlation-request-id": [ - "70176382-3629-4331-b4b9-60d419a273e6" + "5f6d024f-5a43-4c23-8dd3-61369b76220e" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234430Z:70176382-3629-4331-b4b9-60d419a273e6" + "WESTUS:20150604T020406Z:5f6d024f-5a43-4c23-8dd3-61369b76220e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8929,17 +8617,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:44:29 GMT" + "Thu, 04 Jun 2015 02:04:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8965,16 +8653,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" + "14824" ], "x-ms-request-id": [ - "e0486dd9-9ace-45da-a955-a8badc5b830d" + "4305b46d-ffeb-456c-bdb4-75f37cf52778" ], "x-ms-correlation-request-id": [ - "e0486dd9-9ace-45da-a955-a8badc5b830d" + "4305b46d-ffeb-456c-bdb4-75f37cf52778" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234445Z:e0486dd9-9ace-45da-a955-a8badc5b830d" + "WESTUS:20150604T020421Z:4305b46d-ffeb-456c-bdb4-75f37cf52778" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8983,17 +8671,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:44:44 GMT" + "Thu, 04 Jun 2015 02:04:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9019,16 +8707,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "14821" ], "x-ms-request-id": [ - "f11ad5b3-1804-479a-996b-a5de786e809b" + "97fefc08-6b74-4971-a3cb-6642f087e021" ], "x-ms-correlation-request-id": [ - "f11ad5b3-1804-479a-996b-a5de786e809b" + "97fefc08-6b74-4971-a3cb-6642f087e021" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234500Z:f11ad5b3-1804-479a-996b-a5de786e809b" + "WESTUS:20150604T020436Z:97fefc08-6b74-4971-a3cb-6642f087e021" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9037,17 +8725,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:45:00 GMT" + "Thu, 04 Jun 2015 02:04:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9073,16 +8761,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14819" ], "x-ms-request-id": [ - "971a80fb-ed52-41dd-a9ea-b9a75a354879" + "e4ecd6bf-f185-4d89-903d-2d2800c00d76" ], "x-ms-correlation-request-id": [ - "971a80fb-ed52-41dd-a9ea-b9a75a354879" + "e4ecd6bf-f185-4d89-903d-2d2800c00d76" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234516Z:971a80fb-ed52-41dd-a9ea-b9a75a354879" + "WESTUS:20150604T020452Z:e4ecd6bf-f185-4d89-903d-2d2800c00d76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9091,17 +8779,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:45:15 GMT" + "Thu, 04 Jun 2015 02:04:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9127,16 +8815,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14738" + "14817" ], "x-ms-request-id": [ - "00b3c737-6b37-48b6-ae23-860706d87d42" + "fa65f6c5-a5cf-4a8a-b93e-2e136e3d01fb" ], "x-ms-correlation-request-id": [ - "00b3c737-6b37-48b6-ae23-860706d87d42" + "fa65f6c5-a5cf-4a8a-b93e-2e136e3d01fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234531Z:00b3c737-6b37-48b6-ae23-860706d87d42" + "WESTUS:20150604T020507Z:fa65f6c5-a5cf-4a8a-b93e-2e136e3d01fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9145,17 +8833,17 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:45:30 GMT" + "Thu, 04 Jun 2015 02:05:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxNDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9178,16 +8866,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14816" ], "x-ms-request-id": [ - "76cff345-fa51-4f20-9238-6f0da022cb3d" + "604c5123-917d-46ad-a44b-ac3dcc76e5e7" ], "x-ms-correlation-request-id": [ - "76cff345-fa51-4f20-9238-6f0da022cb3d" + "604c5123-917d-46ad-a44b-ac3dcc76e5e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150531T234546Z:76cff345-fa51-4f20-9238-6f0da022cb3d" + "WESTUS:20150604T020523Z:604c5123-917d-46ad-a44b-ac3dcc76e5e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9196,7 +8884,7 @@ "no-cache" ], "Date": [ - "Sun, 31 May 2015 23:45:45 GMT" + "Thu, 04 Jun 2015 02:05:22 GMT" ] }, "StatusCode": 200 @@ -9204,10 +8892,10 @@ ], "Names": { "": [ - "pstestrg2609", - "pstestrg1166", - "pstestrg7266", - "pstestrg7143" + "pstestrg6035", + "pstestrg2529", + "pstestrg2816", + "pstestrg7743" ] }, "Variables": { From 0ed3259c74f4a6071add62696a4e178da809a80a Mon Sep 17 00:00:00 2001 From: huangpf Date: Thu, 4 Jun 2015 12:06:04 -0700 Subject: [PATCH 6/7] update tests --- .../ScenarioTests/VMDynamicTests.ps1 | 2 +- .../ScenarioTests/VirtualMachineTests.ps1 | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 index 0591dc56fe03..44f771fb88b2 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VMDynamicTests.ps1 @@ -238,7 +238,7 @@ function setup_image_and_disks # Image Reference; $vmconfig.StorageProfile.SourceImage = $null; - $imgRef = Get-DefaultCRPImage; + $imgRef = Get-DefaultCRPImage -loc $loc; $vmconfig = ($imgRef | Set-AzureVMSourceImage -VM $vmconfig); # Do not add any data disks diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 index 94bd8def0ee2..a0775a08d1f5 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 @@ -453,7 +453,7 @@ function Test-VirtualMachineSizeAndUsage # Image Reference; $p.StorageProfile.SourceImage = $null; - $imgRef = Get-DefaultCRPImage; + $imgRef = Get-DefaultCRPImage -loc $loc; $p = Set-AzureVMSourceImage -VM $p -PublisherName $imgRef.PublisherName -Offer $imgRef.Offer -Skus $imgRef.Skus -Version $imgRef.Version; Assert-NotNull $p.StorageProfile.ImageReference; Assert-Null $p.StorageProfile.SourceImageId; @@ -619,7 +619,7 @@ function Test-VirtualMachinePIRv2 # Image Reference; $p.StorageProfile.SourceImage = $null; - $imgRef = Get-DefaultCRPImage; + $imgRef = Get-DefaultCRPImage -loc $loc; $p = ($imgRef | Set-AzureVMSourceImage -VM $p); Assert-NotNull $p.StorageProfile.ImageReference; Assert-Null $p.StorageProfile.SourceImageId; @@ -729,7 +729,7 @@ function Test-VirtualMachineCapture # Image Reference; $p.StorageProfile.SourceImage = $null; - $imgRef = Get-DefaultCRPImage; + $imgRef = Get-DefaultCRPImage -loc $loc; $p = ($imgRef | Set-AzureVMSourceImage -VM $p); # TODO: Remove Data Disks for now @@ -824,7 +824,7 @@ function Test-VirtualMachineDataDisk # Image Reference; $p.StorageProfile.SourceImage = $null; - $imgRef = Get-DefaultCRPImage; + $imgRef = Get-DefaultCRPImage -loc $loc; $p = ($imgRef | Set-AzureVMSourceImage -VM $p); # Negative Tests on A0 Size + 2 Data Disks @@ -900,7 +900,7 @@ function Test-VirtualMachinePlan # Image Reference; $p.StorageProfile.SourceImage = $null; - $imgRef = Get-DefaultCRPImage; + $imgRef = Get-DefaultCRPImage -loc $loc; $p = ($imgRef | Set-AzureVMSourceImage -VM $p); $plan = Get-ComputeTestResourceName; @@ -1064,7 +1064,7 @@ function Test-VirtualMachineTags # Image Reference; $p.StorageProfile.SourceImage = $null; - $imgRef = Get-DefaultCRPImage; + $imgRef = Get-DefaultCRPImage -loc $loc; $p = ($imgRef | Set-AzureVMSourceImage -VM $p); # Test Tags From 1073910773d1d662ee0bd1f4bdcc0cdca1b17337 Mon Sep 17 00:00:00 2001 From: huangpf Date: Thu, 4 Jun 2015 14:11:57 -0700 Subject: [PATCH 7/7] update --- .../Generated/VirtualMachineDynamicTest1.ps1 | 24 +- .../Generated/VirtualMachineDynamicTest2.ps1 | 24 +- .../Generated/VirtualMachineDynamicTest3.ps1 | 24 +- .../RunVMDynamicTests.json | 3696 ++++++++++------- 4 files changed, 2201 insertions(+), 1567 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest1.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest1.ps1 index 45f7d3489fe9..a7d2d3a0e6d3 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest1.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest1.ps1 @@ -66,7 +66,7 @@ function create_and_setup_nic_ids $nic_ids = @($null) * 1; $nic0 = New-AzureNetworkInterface -Force -Name ('nic0' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId; $nic_ids[0] = $nic0.Id; - $vmconfig = Add-AzureVMNetworkInterface -VM $vmconfig -Id $nic0.Id -Primary; + $vmconfig = Add-AzureVMNetworkInterface -VM $vmconfig -Id $nic0.Id; $st = Write-Verbose "Creating and getting NICs for '${loc}' and '${rgname}' - End"; return $nic_ids; @@ -107,7 +107,7 @@ function setup_image_and_disks # Image Reference; $vmconfig.StorageProfile.SourceImage = $null; - $imgRef = Get-DefaultCRPImage; + $imgRef = Get-DefaultCRPImage -loc $loc; $vmconfig = ($imgRef | Set-AzureVMSourceImage -VM $vmconfig); # Do not add any data disks @@ -119,19 +119,19 @@ function setup_image_and_disks } -function ps_vm_dynamic_test_func_1_pstestrg2529 +function ps_vm_dynamic_test_func_1_pstestrg1016 { # Setup - $rgname = 'pstestrg2529'; + $rgname = 'pstestrg1016'; try { - $loc = 'Southeast Asia'; - $vmsize = 'Standard_A2'; + $loc = 'West US'; + $vmsize = 'Standard_A3'; - $st = Write-Verbose "Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - Start ${rgname}, ${loc} & ${vmsize}"; + $st = Write-Verbose "Running Test ps_vm_dynamic_test_func_1_pstestrg1016 - Start ${rgname}, ${loc} & ${vmsize}"; - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - Creating Resource Group'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg1016 - Creating Resource Group'; $st = New-AzureResourceGroup -Location $loc -Name $rgname; $vmconfig = create_and_setup_vm_config_object $loc $rgname $vmsize; @@ -146,20 +146,20 @@ function ps_vm_dynamic_test_func_1_pstestrg2529 $st = setup_image_and_disks $loc $rgname $stoname $vmconfig; # Virtual Machine - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - Creating VM'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg1016 - Creating VM'; $vmname = 'vm' + $rgname; $st = New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $vmconfig; # Get VM - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - Getting VM'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg1016 - Getting VM'; $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; # Remove - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - Removing VM'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg1016 - Removing VM'; $st = Remove-AzureVM -Name $vmname -ResourceGroupName $rgname -Force; - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg2529 - End'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_1_pstestrg1016 - End'; } finally { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest2.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest2.ps1 index 51a035125516..8e8b3487a2af 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest2.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest2.ps1 @@ -66,7 +66,7 @@ function create_and_setup_nic_ids $nic_ids = @($null) * 1; $nic0 = New-AzureNetworkInterface -Force -Name ('nic0' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId; $nic_ids[0] = $nic0.Id; - $vmconfig = Add-AzureVMNetworkInterface -VM $vmconfig -Id $nic0.Id -Primary; + $vmconfig = Add-AzureVMNetworkInterface -VM $vmconfig -Id $nic0.Id; $st = Write-Verbose "Creating and getting NICs for '${loc}' and '${rgname}' - End"; return $nic_ids; @@ -107,7 +107,7 @@ function setup_image_and_disks # Image Reference; $vmconfig.StorageProfile.SourceImage = $null; - $imgRef = Get-DefaultCRPImage; + $imgRef = Get-DefaultCRPImage -loc $loc; $vmconfig = ($imgRef | Set-AzureVMSourceImage -VM $vmconfig); # Do not add any data disks @@ -119,19 +119,19 @@ function setup_image_and_disks } -function ps_vm_dynamic_test_func_2_pstestrg2816 +function ps_vm_dynamic_test_func_2_pstestrg4940 { # Setup - $rgname = 'pstestrg2816'; + $rgname = 'pstestrg4940'; try { - $loc = 'West US'; - $vmsize = 'Standard_A2'; + $loc = 'West Europe'; + $vmsize = 'Standard_A3'; - $st = Write-Verbose "Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - Start ${rgname}, ${loc} & ${vmsize}"; + $st = Write-Verbose "Running Test ps_vm_dynamic_test_func_2_pstestrg4940 - Start ${rgname}, ${loc} & ${vmsize}"; - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - Creating Resource Group'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg4940 - Creating Resource Group'; $st = New-AzureResourceGroup -Location $loc -Name $rgname; $vmconfig = create_and_setup_vm_config_object $loc $rgname $vmsize; @@ -146,20 +146,20 @@ function ps_vm_dynamic_test_func_2_pstestrg2816 $st = setup_image_and_disks $loc $rgname $stoname $vmconfig; # Virtual Machine - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - Creating VM'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg4940 - Creating VM'; $vmname = 'vm' + $rgname; $st = New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $vmconfig; # Get VM - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - Getting VM'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg4940 - Getting VM'; $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; # Remove - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - Removing VM'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg4940 - Removing VM'; $st = Remove-AzureVM -Name $vmname -ResourceGroupName $rgname -Force; - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg2816 - End'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_2_pstestrg4940 - End'; } finally { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest3.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest3.ps1 index 128f72f65f95..b922f4d09c0a 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest3.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/Generated/VirtualMachineDynamicTest3.ps1 @@ -66,7 +66,7 @@ function create_and_setup_nic_ids $nic_ids = @($null) * 1; $nic0 = New-AzureNetworkInterface -Force -Name ('nic0' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId; $nic_ids[0] = $nic0.Id; - $vmconfig = Add-AzureVMNetworkInterface -VM $vmconfig -Id $nic0.Id -Primary; + $vmconfig = Add-AzureVMNetworkInterface -VM $vmconfig -Id $nic0.Id; $st = Write-Verbose "Creating and getting NICs for '${loc}' and '${rgname}' - End"; return $nic_ids; @@ -107,7 +107,7 @@ function setup_image_and_disks # Image Reference; $vmconfig.StorageProfile.SourceImage = $null; - $imgRef = Get-DefaultCRPImage; + $imgRef = Get-DefaultCRPImage -loc $loc; $vmconfig = ($imgRef | Set-AzureVMSourceImage -VM $vmconfig); # Do not add any data disks @@ -119,19 +119,19 @@ function setup_image_and_disks } -function ps_vm_dynamic_test_func_3_pstestrg7743 +function ps_vm_dynamic_test_func_3_pstestrg575 { # Setup - $rgname = 'pstestrg7743'; + $rgname = 'pstestrg575'; try { - $loc = 'East Asia'; - $vmsize = 'Standard_A2'; + $loc = 'Southeast Asia'; + $vmsize = 'Standard_A3'; - $st = Write-Verbose "Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - Start ${rgname}, ${loc} & ${vmsize}"; + $st = Write-Verbose "Running Test ps_vm_dynamic_test_func_3_pstestrg575 - Start ${rgname}, ${loc} & ${vmsize}"; - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - Creating Resource Group'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg575 - Creating Resource Group'; $st = New-AzureResourceGroup -Location $loc -Name $rgname; $vmconfig = create_and_setup_vm_config_object $loc $rgname $vmsize; @@ -146,20 +146,20 @@ function ps_vm_dynamic_test_func_3_pstestrg7743 $st = setup_image_and_disks $loc $rgname $stoname $vmconfig; # Virtual Machine - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - Creating VM'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg575 - Creating VM'; $vmname = 'vm' + $rgname; $st = New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $vmconfig; # Get VM - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - Getting VM'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg575 - Getting VM'; $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; # Remove - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - Removing VM'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg575 - Removing VM'; $st = Remove-AzureVM -Name $vmname -ResourceGroupName $rgname -Force; - $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg7743 - End'; + $st = Write-Verbose 'Running Test ps_vm_dynamic_test_func_3_pstestrg575 - End'; } finally { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VMDynamicTests/RunVMDynamicTests.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VMDynamicTests/RunVMDynamicTests.json index 9b61ae6a3ebe..131a1254c416 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VMDynamicTests/RunVMDynamicTests.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VMDynamicTests/RunVMDynamicTests.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.batch\",\r\n \"namespace\": \"microsoft.batch\",\r\n \"resourceTypes\": [],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/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 \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\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 \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\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 \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\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 \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"South Central US\",\r\n \"East US 2\",\r\n \"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\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"South Central US\",\r\n \"East US 2\",\r\n \"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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\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 \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\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 \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central 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 \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\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 \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.batch\",\r\n \"namespace\": \"microsoft.batch\",\r\n \"resourceTypes\": [],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/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 \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\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 \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East 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 \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\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 \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\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 \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"South Central US\",\r\n \"East US 2\",\r\n \"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\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"South Central US\",\r\n \"East US 2\",\r\n \"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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West 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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\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 \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\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 \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central 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 \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\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 \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "52297" + "50216" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "14990" ], "x-ms-request-id": [ - "5e75f5e3-0a7f-49b5-b7e6-a7bcf57e67e9" + "33e7b658-c7c5-41c2-87fb-ffc539da509a" ], "x-ms-correlation-request-id": [ - "5e75f5e3-0a7f-49b5-b7e6-a7bcf57e67e9" + "33e7b658-c7c5-41c2-87fb-ffc539da509a" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012849Z:5e75f5e3-0a7f-49b5-b7e6-a7bcf57e67e9" + "WESTUS:20150604T192303Z:33e7b658-c7c5-41c2-87fb-ffc539da509a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:28:49 GMT" + "Thu, 04 Jun 2015 19:23:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/vmSizes?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5867" + "7296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,7 +76,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58219881-af3b-4396-8858-2a11469763ff" + "b85c78ca-1815-4e27-92e5-f3662649d1ec" ], "Cache-Control": [ "no-cache" @@ -86,23 +86,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14962" ], "x-ms-correlation-request-id": [ - "bad9418d-cd7f-4354-babc-e025676799bb" + "4c33e104-10c7-4e12-a000-2bc2eff2610d" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012912Z:bad9418d-cd7f-4354-babc-e025676799bb" + "WESTUS:20150604T192304Z:4c33e104-10c7-4e12-a000-2bc2eff2610d" ], "Date": [ - "Thu, 04 Jun 2015 01:29:12 GMT" + "Thu, 04 Jun 2015 19:23:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/vmSizes?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -110,7 +110,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "7296" @@ -128,7 +128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2866b0d3-278c-454f-ac78-4aba5b5f2baa" + "329456d0-9171-4355-b280-79e8beabcb41" ], "Cache-Control": [ "no-cache" @@ -138,23 +138,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14961" ], "x-ms-correlation-request-id": [ - "a904b7d1-381b-4d30-afbd-d18fb039b218" + "ad0da40c-d292-4e07-98e5-9323e08fa7ca" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012912Z:a904b7d1-381b-4d30-afbd-d18fb039b218" + "WESTUS:20150604T192304Z:ad0da40c-d292-4e07-98e5-9323e08fa7ca" ], "Date": [ - "Thu, 04 Jun 2015 01:29:12 GMT" + "Thu, 04 Jun 2015 19:23:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/vmSizes?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/vmSizes?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -162,10 +162,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4222" + "5867" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,7 +180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d4baf09-3080-4b37-9154-c1d665653649" + "1257a518-33c1-4ff7-8e25-415ecb4c4fe0" ], "Cache-Control": [ "no-cache" @@ -190,23 +190,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14960" ], "x-ms-correlation-request-id": [ - "0592e52e-e098-4bcd-9af6-a98c0795d749" + "30434175-af9b-467f-96ec-f68f51b2ab34" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012913Z:0592e52e-e098-4bcd-9af6-a98c0795d749" + "WESTUS:20150604T192326Z:30434175-af9b-467f-96ec-f68f51b2ab34" ], "Date": [ - "Thu, 04 Jun 2015 01:29:13 GMT" + "Thu, 04 Jun 2015 19:23:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2529?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1016?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTAxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -235,13 +235,13 @@ "14989" ], "x-ms-request-id": [ - "7d59e8b5-5df8-4632-9c3c-cf54c11db18a" + "1b49c92d-3064-4963-9f69-a311796df1b8" ], "x-ms-correlation-request-id": [ - "7d59e8b5-5df8-4632-9c3c-cf54c11db18a" + "1b49c92d-3064-4963-9f69-a311796df1b8" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012913Z:7d59e8b5-5df8-4632-9c3c-cf54c11db18a" + "WESTUS:20150604T192326Z:1b49c92d-3064-4963-9f69-a311796df1b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,14 +250,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:29:12 GMT" + "Thu, 04 Jun 2015 19:23:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2529?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1016?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTAxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -277,16 +277,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14943" ], "x-ms-request-id": [ - "a8865b25-f030-4775-b366-3d0814b12973" + "dcf590a5-dfe5-47fd-871e-bc9aa4801529" ], "x-ms-correlation-request-id": [ - "a8865b25-f030-4775-b366-3d0814b12973" + "dcf590a5-dfe5-47fd-871e-bc9aa4801529" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013811Z:a8865b25-f030-4775-b366-3d0814b12973" + "WESTUS:20150604T193406Z:dcf590a5-dfe5-47fd-871e-bc9aa4801529" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -295,31 +295,31 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:38:11 GMT" + "Thu, 04 Jun 2015 19:34:06 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2529?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1016?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTAxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Southeast Asia\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "36" + "29" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529\",\r\n \"name\": \"pstestrg2529\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016\",\r\n \"name\": \"pstestrg1016\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +331,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-request-id": [ - "6b2bd4b1-49fd-44f0-a8ed-ed9ebfbd7e68" + "e7832547-96f0-41ce-8e86-e2178fb633d5" ], "x-ms-correlation-request-id": [ - "6b2bd4b1-49fd-44f0-a8ed-ed9ebfbd7e68" + "e7832547-96f0-41ce-8e86-e2178fb633d5" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012917Z:6b2bd4b1-49fd-44f0-a8ed-ed9ebfbd7e68" + "WESTUS:20150604T192327Z:e7832547-96f0-41ce-8e86-e2178fb633d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,14 +349,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:29:16 GMT" + "Thu, 04 Jun 2015 19:23:26 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -382,13 +382,13 @@ "14988" ], "x-ms-request-id": [ - "85138222-52cc-4f91-983a-b0aac7bd3130" + "588d7506-d798-42dc-8ad9-a1e9e6f7e51a" ], "x-ms-correlation-request-id": [ - "85138222-52cc-4f91-983a-b0aac7bd3130" + "588d7506-d798-42dc-8ad9-a1e9e6f7e51a" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012917Z:85138222-52cc-4f91-983a-b0aac7bd3130" + "WESTUS:20150604T192327Z:588d7506-d798-42dc-8ad9-a1e9e6f7e51a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,14 +397,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:29:16 GMT" + "Thu, 04 Jun 2015 19:23:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2529/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1016/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -430,16 +430,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:57d17f11-7def-4b12-969a-e229767f6248" + "westus:713d6bf0-9336-4c50-a131-f3d7d250a8f6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14965" ], "x-ms-correlation-request-id": [ - "966cd4f6-a7c3-4e94-94b9-46470f89f897" + "a21a179e-1699-4cf7-9d9c-a20feee7a4fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012918Z:966cd4f6-a7c3-4e94-94b9-46470f89f897" + "WESTUS:20150604T192327Z:a21a179e-1699-4cf7-9d9c-a20feee7a4fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,25 +448,25 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:29:18 GMT" + "Thu, 04 Jun 2015 19:23:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Storage/storageAccounts/stopstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Storage/storageAccounts/stopstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTAxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "96" + "89" ], "x-ms-client-request-id": [ - "a7420129-49dc-4fa5-b560-f70b962731d0" + "60565740-cfc5-4dbc-9fec-03dbc604b684" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -490,44 +490,44 @@ "25" ], "x-ms-request-id": [ - "198afdc6-b848-44cb-a667-7b52efc02d8b" + "5780aaed-5c81-43fc-bb37-8491ac6ed380" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/198afdc6-b848-44cb-a667-7b52efc02d8b?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/5780aaed-5c81-43fc-bb37-8491ac6ed380?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "ae934b96-4c13-4770-83c0-2e29f794a9f0" + "9fe72e1d-47a8-4e36-8d24-d5df0053c0d7" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012926Z:ae934b96-4c13-4770-83c0-2e29f794a9f0" + "WESTUS:20150604T192330Z:9fe72e1d-47a8-4e36-8d24-d5df0053c0d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:29:25 GMT" + "Thu, 04 Jun 2015 19:23:29 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/198afdc6-b848-44cb-a667-7b52efc02d8b?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzE5OGFmZGM2LWI4NDgtNDRjYi1hNjY3LTdiNTJlZmMwMmQ4Yj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/5780aaed-5c81-43fc-bb37-8491ac6ed380?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzU3ODBhYWVkLTVjODEtNDNmYy1iYjM3LTg0OTFhYzZlZDM4MD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf53c6da-d1f0-4b41-a4a3-dd949f7e1789" + "b7616966-1fed-4f59-a843-ffae19f05d3c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -551,13 +551,13 @@ "25" ], "x-ms-request-id": [ - "d2a12a88-c722-4f41-a2ae-813b0ca4f04d" + "a472877a-456f-4035-b392-bd63e22f2574" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/198afdc6-b848-44cb-a667-7b52efc02d8b?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/5780aaed-5c81-43fc-bb37-8491ac6ed380?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -567,37 +567,37 @@ "14987" ], "x-ms-correlation-request-id": [ - "96de2645-d440-4d1d-96d3-aa97b7bf66ee" + "b8029ece-12cf-4d1b-840d-192ab37eba7e" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012926Z:96de2645-d440-4d1d-96d3-aa97b7bf66ee" + "WESTUS:20150604T192330Z:b8029ece-12cf-4d1b-840d-192ab37eba7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:29:26 GMT" + "Thu, 04 Jun 2015 19:23:29 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/198afdc6-b848-44cb-a667-7b52efc02d8b?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzE5OGFmZGM2LWI4NDgtNDRjYi1hNjY3LTdiNTJlZmMwMmQ4Yj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/5780aaed-5c81-43fc-bb37-8491ac6ed380?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzU3ODBhYWVkLTVjODEtNDNmYy1iYjM3LTg0OTFhYzZlZDM4MD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d68bb0a-9ce5-4b8d-b3d8-4b9c29ba331c" + "c0adeb12-06ee-47f9-b83a-2de18867d740" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "66" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,7 +609,7 @@ "no-cache" ], "x-ms-request-id": [ - "00ad6a47-dd1f-468b-a78b-7404fa073e94" + "552016ad-2b1a-428e-a959-996ff9089070" ], "Cache-Control": [ "no-cache" @@ -622,37 +622,37 @@ "14986" ], "x-ms-correlation-request-id": [ - "bb21ef4a-1589-4dca-b8c3-5344374cd4a2" + "5bfecb1c-c823-4d5a-b6f3-adb187c94dca" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012951Z:bb21ef4a-1589-4dca-b8c3-5344374cd4a2" + "WESTUS:20150604T192355Z:5bfecb1c-c823-4d5a-b6f3-adb187c94dca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:29:50 GMT" + "Thu, 04 Jun 2015 19:23:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Storage/storageAccounts/stopstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Storage/storageAccounts/stopstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTAxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eeda74cc-e8f0-4356-92ed-45e81327e74d" + "73f25ddd-636f-4a3c-aaf3-004f4e2cd9c2" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Storage/storageAccounts/stopstestrg2529\",\r\n \"name\": \"stopstestrg2529\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg2529.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2529.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2529.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:29:22.4863625Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Storage/storageAccounts/stopstestrg1016\",\r\n \"name\": \"stopstestrg1016\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg1016.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1016.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1016.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T19:23:28.0492297Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "688" + "672" ], "Content-Type": [ "application/json; charset=utf-8" @@ -664,7 +664,7 @@ "no-cache" ], "x-ms-request-id": [ - "45943c07-14cf-42bc-b8f5-81bf6256bdc1" + "5097bd08-3797-4a33-93b0-9fb28a7e9d2b" ], "Cache-Control": [ "no-cache" @@ -677,37 +677,37 @@ "14985" ], "x-ms-correlation-request-id": [ - "56b802af-31ba-4be0-ad79-97036d4a59ac" + "cc8285af-566a-4305-83a0-9c6f66b95e31" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012951Z:56b802af-31ba-4be0-ad79-97036d4a59ac" + "WESTUS:20150604T192356Z:cc8285af-566a-4305-83a0-9c6f66b95e31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:29:50 GMT" + "Thu, 04 Jun 2015 19:23:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Storage/storageAccounts/stopstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Storage/storageAccounts/stopstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTAxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a814963-d318-485d-8be3-7fca5b6a278d" + "2764db26-49d1-46ec-8392-9a9771dc6731" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Storage/storageAccounts/stopstestrg2529\",\r\n \"name\": \"stopstestrg2529\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg2529.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2529.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2529.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:29:22.4863625Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Storage/storageAccounts/stopstestrg1016\",\r\n \"name\": \"stopstestrg1016\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg1016.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1016.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1016.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T19:23:28.0492297Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "688" + "672" ], "Content-Type": [ "application/json; charset=utf-8" @@ -719,7 +719,7 @@ "no-cache" ], "x-ms-request-id": [ - "2a95c2d1-be50-466b-ac29-bece78461810" + "c7ccc271-42d4-408d-89c7-c30082f12bdd" ], "Cache-Control": [ "no-cache" @@ -732,23 +732,23 @@ "14984" ], "x-ms-correlation-request-id": [ - "c956a268-e104-4f9b-8367-ea43fafa1318" + "91034abb-f380-4ab2-9a2f-c65f2e1c9042" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012952Z:c956a268-e104-4f9b-8367-ea43fafa1318" + "WESTUS:20150604T192356Z:91034abb-f380-4ab2-9a2f-c65f2e1c9042" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:29:51 GMT" + "Thu, 04 Jun 2015 19:23:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI1Mjk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzEwMTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,13 +774,13 @@ "gateway" ], "x-ms-request-id": [ - "bf6735b0-0eee-48a5-94ca-1508f5a4e44f" + "75c52803-52b8-4dfa-8d8f-63fcb20ca1da" ], "x-ms-correlation-request-id": [ - "bf6735b0-0eee-48a5-94ca-1508f5a4e44f" + "75c52803-52b8-4dfa-8d8f-63fcb20ca1da" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012953Z:bf6735b0-0eee-48a5-94ca-1508f5a4e44f" + "WESTUS:20150604T192356Z:75c52803-52b8-4dfa-8d8f-63fcb20ca1da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,14 +789,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:29:52 GMT" + "Thu, 04 Jun 2015 19:23:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI1Mjk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzEwMTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,10 +804,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529\",\r\n \"etag\": \"W/\\\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\",\r\n \"etag\": \"W/\\\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1016\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1016\",\r\n \"etag\": \"W/\\\"f7b2ceed-e6b7-4243-9626-2b38f1ae7704\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1016\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1016/subnets/subnetpstestrg1016\",\r\n \"etag\": \"W/\\\"f7b2ceed-e6b7-4243-9626-2b38f1ae7704\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "960" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,7 +819,7 @@ "no-cache" ], "x-ms-request-id": [ - "a1c75348-143b-4988-91e4-02ac728d8270" + "a3926342-7f85-476e-b0d3-2de58d3a44b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,30 +828,30 @@ "no-cache" ], "ETag": [ - "W/\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\"" + "W/\"f7b2ceed-e6b7-4243-9626-2b38f1ae7704\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14981" ], "x-ms-correlation-request-id": [ - "a3871f71-30d7-4960-afba-55e6e6122c2b" + "53b4b7d9-ae7f-421c-bf47-90e61e67b833" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013000Z:a3871f71-30d7-4960-afba-55e6e6122c2b" + "WESTUS:20150604T192400Z:53b4b7d9-ae7f-421c-bf47-90e61e67b833" ], "Date": [ - "Thu, 04 Jun 2015 01:30:00 GMT" + "Thu, 04 Jun 2015 19:23:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI1Mjk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzEwMTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,10 +859,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529\",\r\n \"etag\": \"W/\\\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\",\r\n \"etag\": \"W/\\\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1016\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1016\",\r\n \"etag\": \"W/\\\"f7b2ceed-e6b7-4243-9626-2b38f1ae7704\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1016\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1016/subnets/subnetpstestrg1016\",\r\n \"etag\": \"W/\\\"f7b2ceed-e6b7-4243-9626-2b38f1ae7704\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "960" ], "Content-Type": [ "application/json; charset=utf-8" @@ -874,7 +874,7 @@ "no-cache" ], "x-ms-request-id": [ - "0f1661b1-34ba-48c8-9653-0cdbc4ba7510" + "aa489d7f-5eea-4fb2-b63f-090f3a20b7fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -883,47 +883,47 @@ "no-cache" ], "ETag": [ - "W/\"a8034dd3-177e-4fe5-ba9b-c9af45ec5e7e\"" + "W/\"f7b2ceed-e6b7-4243-9626-2b38f1ae7704\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14980" ], "x-ms-correlation-request-id": [ - "e1c62905-80ee-44c2-903e-96ca45ae652a" + "dd00df65-fd76-48ef-8d8f-9859aadb4a5d" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013001Z:e1c62905-80ee-44c2-903e-96ca45ae652a" + "WESTUS:20150604T192400Z:dd00df65-fd76-48ef-8d8f-9859aadb4a5d" ], "Date": [ - "Thu, 04 Jun 2015 01:30:01 GMT" + "Thu, 04 Jun 2015 19:23:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI1Mjk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzEwMTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg2529\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg2529\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"Southeast Asia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg1016\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg1016\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "508" + "501" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529\",\r\n \"etag\": \"W/\\\"360bd121-89fc-4330-8c20-b5a88008e04f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\",\r\n \"etag\": \"W/\\\"360bd121-89fc-4330-8c20-b5a88008e04f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1016\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1016\",\r\n \"etag\": \"W/\\\"bbe6b7e6-b20e-4ef9-810e-f58311f58bc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1016\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1016/subnets/subnetpstestrg1016\",\r\n \"etag\": \"W/\\\"bbe6b7e6-b20e-4ef9-810e-f58311f58bc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "965" + "958" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,10 +938,10 @@ "10" ], "x-ms-request-id": [ - "8dd8084b-8842-4371-bbc0-28a16d5fb790" + "2387fdaf-3745-47f3-8a2d-0b43e1487305" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/8dd8084b-8842-4371-bbc0-28a16d5fb790?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/2387fdaf-3745-47f3-8a2d-0b43e1487305?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,23 +954,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "f800c99b-d080-44bb-a95c-2af21398638a" + "4b6ddebc-90d1-47e2-bd73-bf6aa74c60d2" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T012959Z:f800c99b-d080-44bb-a95c-2af21398638a" + "WESTUS:20150604T192359Z:4b6ddebc-90d1-47e2-bd73-bf6aa74c60d2" ], "Date": [ - "Thu, 04 Jun 2015 01:29:59 GMT" + "Thu, 04 Jun 2015 19:23:59 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/8dd8084b-8842-4371-bbc0-28a16d5fb790?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhkZDgwODRiLTg4NDItNDM3MS1iYmMwLTI4YTE2ZDVmYjc5MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/2387fdaf-3745-47f3-8a2d-0b43e1487305?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjM4N2ZkYWYtMzc0NS00N2YzLThhMmQtMGI0M2UxNDg3MzA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -996,7 +996,7 @@ "no-cache" ], "x-ms-request-id": [ - "b2842226-cec2-4edc-a556-a10453d36077" + "cec9d6a8-3d24-4fb7-9a3f-322fd6e34f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1009,23 +1009,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14982" ], "x-ms-correlation-request-id": [ - "6089c7d1-8466-41a6-9ffe-fc5fec5e7ce0" + "e2e2bb48-331a-411f-a699-c66d0c817959" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013000Z:6089c7d1-8466-41a6-9ffe-fc5fec5e7ce0" + "WESTUS:20150604T192359Z:e2e2bb48-331a-411f-a699-c66d0c817959" ], "Date": [ - "Thu, 04 Jun 2015 01:30:00 GMT" + "Thu, 04 Jun 2015 19:23:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMTAxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1051,13 +1051,13 @@ "gateway" ], "x-ms-request-id": [ - "d1d4b409-aee8-44cd-b85e-c36307a29623" + "d10d1ba2-49ee-4308-bd0a-c12334631896" ], "x-ms-correlation-request-id": [ - "d1d4b409-aee8-44cd-b85e-c36307a29623" + "d10d1ba2-49ee-4308-bd0a-c12334631896" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013001Z:d1d4b409-aee8-44cd-b85e-c36307a29623" + "WESTUS:20150604T192400Z:d10d1ba2-49ee-4308-bd0a-c12334631896" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1066,14 +1066,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:30:01 GMT" + "Thu, 04 Jun 2015 19:23:59 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMTAxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1081,10 +1081,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529\",\r\n \"etag\": \"W/\\\"c7bd3920-8fd3-4d84-aa6a-acaa5d594d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c7bd3920-8fd3-4d84-aa6a-acaa5d594d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg1016\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1016\",\r\n \"etag\": \"W/\\\"483a1753-1bbf-4e48-9d6b-7604050fa39e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1016/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"483a1753-1bbf-4e48-9d6b-7604050fa39e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1016/subnets/subnetpstestrg1016\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1099" + "1092" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1096,7 +1096,7 @@ "no-cache" ], "x-ms-request-id": [ - "057c0524-0e45-4607-a077-37aaa523a0bc" + "45c1e756-2345-43e0-a684-e7cc865f8730" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1105,47 +1105,47 @@ "no-cache" ], "ETag": [ - "W/\"c7bd3920-8fd3-4d84-aa6a-acaa5d594d89\"" + "W/\"483a1753-1bbf-4e48-9d6b-7604050fa39e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14977" ], "x-ms-correlation-request-id": [ - "a7d371e6-d891-49f7-b472-e3ab642c59c7" + "aba9b839-1f30-41c1-93d7-7c8195edb037" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013007Z:a7d371e6-d891-49f7-b472-e3ab642c59c7" + "WESTUS:20150604T192401Z:aba9b839-1f30-41c1-93d7-7c8195edb037" ], "Date": [ - "Thu, 04 Jun 2015 01:30:07 GMT" + "Thu, 04 Jun 2015 19:24:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMTAxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg2529\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"Southeast Asia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1016/subnets/subnetpstestrg1016\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg1016\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "655" + "648" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg2529\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529\",\r\n \"etag\": \"W/\\\"c7bd3920-8fd3-4d84-aa6a-acaa5d594d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c7bd3920-8fd3-4d84-aa6a-acaa5d594d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2529/subnets/subnetpstestrg2529\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg1016\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1016\",\r\n \"etag\": \"W/\\\"483a1753-1bbf-4e48-9d6b-7604050fa39e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1016/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"483a1753-1bbf-4e48-9d6b-7604050fa39e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1016/subnets/subnetpstestrg1016\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1099" + "1092" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1157,10 +1157,10 @@ "no-cache" ], "x-ms-request-id": [ - "364b09b2-2ea1-44d9-a9b6-58e0eff89433" + "76530160-dbfe-499b-92e4-79f08422409f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/364b09b2-2ea1-44d9-a9b6-58e0eff89433?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/76530160-dbfe-499b-92e4-79f08422409f?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,23 +1173,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "b21e4216-cce1-4005-8824-c31e2bd6f66f" + "344a8f91-c163-40b2-a0a0-0ee91e1d9401" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013006Z:b21e4216-cce1-4005-8824-c31e2bd6f66f" + "WESTUS:20150604T192400Z:344a8f91-c163-40b2-a0a0-0ee91e1d9401" ], "Date": [ - "Thu, 04 Jun 2015 01:30:06 GMT" + "Thu, 04 Jun 2015 19:24:00 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/364b09b2-2ea1-44d9-a9b6-58e0eff89433?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM2NGIwOWIyLTJlYTEtNDRkOS1hOWI2LTU4ZTBlZmY4OTQzMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/76530160-dbfe-499b-92e4-79f08422409f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzY1MzAxNjAtZGJmZS00OTliLTkyZTQtNzlmMDg0MjI0MDlmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1215,7 +1215,7 @@ "no-cache" ], "x-ms-request-id": [ - "f2f7be23-3c29-473d-a15b-9a46e7a8c273" + "77f9c105-34ea-407e-aad5-a0a3ad2b268b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1228,16 +1228,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14978" ], "x-ms-correlation-request-id": [ - "72da8756-5a8e-49a5-94b8-adffacbfe3d5" + "235a0aee-ede7-48a7-a2e7-12785009a90d" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013007Z:72da8756-5a8e-49a5-94b8-adffacbfe3d5" + "WESTUS:20150604T192401Z:235a0aee-ede7-48a7-a2e7-12785009a90d" ], "Date": [ - "Thu, 04 Jun 2015 01:30:07 GMT" + "Thu, 04 Jun 2015 19:24:00 GMT" ] }, "StatusCode": 200 @@ -1270,7 +1270,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd73d165-db6d-4483-ab47-b75a1c4749f8" + "9c515dbe-f3d4-4376-b6a1-9769011c4d0a" ], "Cache-Control": [ "no-cache" @@ -1280,23 +1280,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14958" ], "x-ms-correlation-request-id": [ - "a3821927-f0b6-4783-9e6d-d3727f9e5332" + "45706755-f9f6-4cfb-b56e-6c4c283c5d61" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013008Z:a3821927-f0b6-4783-9e6d-d3727f9e5332" + "WESTUS:20150604T192401Z:45706755-f9f6-4cfb-b56e-6c4c283c5d61" ], "Date": [ - "Thu, 04 Jun 2015 01:30:07 GMT" + "Thu, 04 Jun 2015 19:24:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1304,10 +1304,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "38331" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1322,7 +1322,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb99cfa2-c3ce-4894-8df5-d052b8db9420" + "ecba333a-7eaa-4d18-a951-2fdd7a947413" ], "Cache-Control": [ "no-cache" @@ -1332,23 +1332,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14957" ], "x-ms-correlation-request-id": [ - "a95553a1-98c8-4860-adc5-bceffe86658b" + "49945e35-40ff-4b3f-8037-ef10a886df4a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014030Z:a95553a1-98c8-4860-adc5-bceffe86658b" + "WESTUS:20150604T192401Z:49945e35-40ff-4b3f-8037-ef10a886df4a" ], "Date": [ - "Thu, 04 Jun 2015 01:40:30 GMT" + "Thu, 04 Jun 2015 19:24:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1356,10 +1356,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "38531" + "835" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1374,7 +1374,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ffd269f-c60f-4c8f-98ad-5a9a1a643f48" + "2f8753c4-330e-4c57-b77e-d808801df178" ], "Cache-Control": [ "no-cache" @@ -1384,23 +1384,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "14956" ], "x-ms-correlation-request-id": [ - "51b7ab9a-dc45-4850-8f2c-d6969f76be46" + "07a48d41-a7d6-44d6-a4f9-3ab897f23564" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015220Z:51b7ab9a-dc45-4850-8f2c-d6969f76be46" + "WESTUS:20150604T192401Z:07a48d41-a7d6-44d6-a4f9-3ab897f23564" ], "Date": [ - "Thu, 04 Jun 2015 01:52:20 GMT" + "Thu, 04 Jun 2015 19:24:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1408,10 +1408,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "258" + "581" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1426,7 +1426,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f141771e-fc1a-45bd-87f9-c26ab0b99f81" + "d5d189d5-75a2-4be6-8cd1-58e374d079ce" ], "Cache-Control": [ "no-cache" @@ -1436,23 +1436,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14955" ], "x-ms-correlation-request-id": [ - "dab6d819-390e-4693-8d44-16b7d3c0b97d" + "e4dbcf2b-bed2-4738-928e-a2fc3d3e87a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013008Z:dab6d819-390e-4693-8d44-16b7d3c0b97d" + "WESTUS:20150604T192401Z:e4dbcf2b-bed2-4738-928e-a2fc3d3e87a5" ], "Date": [ - "Thu, 04 Jun 2015 01:30:07 GMT" + "Thu, 04 Jun 2015 19:24:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1460,10 +1460,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "258" + "393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1478,7 +1478,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e436b61-ffee-444f-81cd-4b552405baaa" + "90be3c7c-f45b-4436-a8be-662f06032f0a" ], "Cache-Control": [ "no-cache" @@ -1488,34 +1488,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14954" ], "x-ms-correlation-request-id": [ - "d1fdfa35-db3b-4879-8a90-5de4c312cdbe" + "0c1a433c-b1ce-43ee-85bc-e7148a31026c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014031Z:d1fdfa35-db3b-4879-8a90-5de4c312cdbe" + "WESTUS:20150604T192401Z:0c1a433c-b1ce-43ee-85bc-e7148a31026c" ], "Date": [ - "Thu, 04 Jun 2015 01:40:31 GMT" + "Thu, 04 Jun 2015 19:24:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Compute/virtualMachines/vmpstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcxMDE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg1016.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg1016\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg1016\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1016\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg1016\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1065" + ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg1016.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg1016\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1016\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Compute/virtualMachines/vmpstestrg1016\",\r\n \"name\": \"vmpstestrg1016\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "258" + "1344" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1526,11 +1532,14 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ed84652-b20f-4ed0-a649-e50c9cb72d0f" + "446bedbb-f128-4bd7-a4e8-2cb71c18657a" ], "Cache-Control": [ "no-cache" @@ -1539,24 +1548,24 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "228acfaf-d309-4fc6-bd73-576c28869726" + "710dc8e5-5ae3-43c1-aa09-e04943329092" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015220Z:228acfaf-d309-4fc6-bd73-576c28869726" + "WESTUS:20150604T192402Z:710dc8e5-5ae3-43c1-aa09-e04943329092" ], "Date": [ - "Thu, 04 Jun 2015 01:52:20 GMT" + "Thu, 04 Jun 2015 19:24:01 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1564,10 +1573,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "835" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1582,7 +1591,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0cfbf062-0621-4487-850a-71cc5b1b10af" + "0275ac48-4c68-44a7-a7fd-3dba92956d42" ], "Cache-Control": [ "no-cache" @@ -1592,23 +1601,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14953" ], "x-ms-correlation-request-id": [ - "7c4dbb00-e598-4a11-878c-7807d3a04a7f" + "92e56c96-6ebd-4c17-9b1e-956c52ba8538" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013008Z:7c4dbb00-e598-4a11-878c-7807d3a04a7f" + "WESTUS:20150604T192402Z:92e56c96-6ebd-4c17-9b1e-956c52ba8538" ], "Date": [ - "Thu, 04 Jun 2015 01:30:08 GMT" + "Thu, 04 Jun 2015 19:24:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1616,10 +1625,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "835" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1634,7 +1643,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb50a5f6-fe54-4485-b4c7-f795c461fc56" + "22cee176-c0d0-4d95-8c47-b65f2da89520" ], "Cache-Control": [ "no-cache" @@ -1644,23 +1653,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14952" ], "x-ms-correlation-request-id": [ - "102e914c-1fd1-46f4-bed4-af32acde9286" + "e0340e5d-15d9-477c-a908-556273bdcbe5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014031Z:102e914c-1fd1-46f4-bed4-af32acde9286" + "WESTUS:20150604T192432Z:e0340e5d-15d9-477c-a908-556273bdcbe5" ], "Date": [ - "Thu, 04 Jun 2015 01:40:31 GMT" + "Thu, 04 Jun 2015 19:24:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1668,10 +1677,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "835" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1686,7 +1695,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3dda7300-4d12-4b46-932a-419d318ca39b" + "072b6446-a34d-4188-9408-cfbb26e98f82" ], "Cache-Control": [ "no-cache" @@ -1696,23 +1705,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "14948" ], "x-ms-correlation-request-id": [ - "2cfab461-bff6-427c-a2b0-0b19dde97aa0" + "afdbd551-7fc2-4719-b89f-a21c1f8704b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015220Z:2cfab461-bff6-427c-a2b0-0b19dde97aa0" + "WESTUS:20150604T192503Z:afdbd551-7fc2-4719-b89f-a21c1f8704b6" ], "Date": [ - "Thu, 04 Jun 2015 01:52:20 GMT" + "Thu, 04 Jun 2015 19:25:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1720,10 +1729,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "581" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1738,7 +1747,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf766fac-5cc8-4968-8127-bfe14aa48785" + "db3ff3d3-c0fe-4b17-8760-4d308861a853" ], "Cache-Control": [ "no-cache" @@ -1748,23 +1757,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14944" ], "x-ms-correlation-request-id": [ - "58b18d87-8596-4055-b4c3-d708966c39ab" + "29e9f6e8-f74d-4acb-9930-b2d3f8f90dbb" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013008Z:58b18d87-8596-4055-b4c3-d708966c39ab" + "WESTUS:20150604T192533Z:29e9f6e8-f74d-4acb-9930-b2d3f8f90dbb" ], "Date": [ - "Thu, 04 Jun 2015 01:30:08 GMT" + "Thu, 04 Jun 2015 19:25:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1772,10 +1781,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "581" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1790,7 +1799,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54c34997-36a7-4bf9-890f-55dc62887a3f" + "5062d459-423b-4235-9cc0-fba689d235d1" ], "Cache-Control": [ "no-cache" @@ -1800,23 +1809,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14943" ], "x-ms-correlation-request-id": [ - "aabb816b-7579-45b5-9a46-f59ba2bf28ef" + "5cd27b3f-8a03-4644-8297-981e941e7325" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014031Z:aabb816b-7579-45b5-9a46-f59ba2bf28ef" + "WESTUS:20150604T192603Z:5cd27b3f-8a03-4644-8297-981e941e7325" ], "Date": [ - "Thu, 04 Jun 2015 01:40:31 GMT" + "Thu, 04 Jun 2015 19:26:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1824,10 +1833,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "581" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1842,7 +1851,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc412670-0e4f-4d01-80c0-192b02f7c472" + "1de7b811-0fd3-407c-bf54-7254059330e9" ], "Cache-Control": [ "no-cache" @@ -1852,23 +1861,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14940" ], "x-ms-correlation-request-id": [ - "e4402371-a88d-41d3-b5b2-ad2795c78cf9" + "939fed04-0438-40df-82de-cba2325591a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015221Z:e4402371-a88d-41d3-b5b2-ad2795c78cf9" + "WESTUS:20150604T192633Z:939fed04-0438-40df-82de-cba2325591a5" ], "Date": [ - "Thu, 04 Jun 2015 01:52:20 GMT" + "Thu, 04 Jun 2015 19:26:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1876,10 +1885,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "393" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1894,7 +1903,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7355376d-cf36-4c72-a1fd-43ab0d4030b9" + "e5b30577-49a0-4a24-8734-1ca933631588" ], "Cache-Control": [ "no-cache" @@ -1904,23 +1913,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14936" ], "x-ms-correlation-request-id": [ - "18a00fc1-1ce5-407a-a590-936958e34547" + "08523e4e-3e57-4a3b-b506-8a8194cf17c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013008Z:18a00fc1-1ce5-407a-a590-936958e34547" + "WESTUS:20150604T192703Z:08523e4e-3e57-4a3b-b506-8a8194cf17c3" ], "Date": [ - "Thu, 04 Jun 2015 01:30:08 GMT" + "Thu, 04 Jun 2015 19:27:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1928,10 +1937,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "393" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1946,7 +1955,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87964f0b-c84d-4c5f-939f-83d4eeb2cb53" + "d444bfc0-1042-480e-8959-eea1d9f947d7" ], "Cache-Control": [ "no-cache" @@ -1956,23 +1965,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14932" ], "x-ms-correlation-request-id": [ - "b012fd62-5d1d-4687-bdcc-b6037b426670" + "edbd8f60-e058-4e04-87b7-1288c3aee482" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014032Z:b012fd62-5d1d-4687-bdcc-b6037b426670" + "WESTUS:20150604T192733Z:edbd8f60-e058-4e04-87b7-1288c3aee482" ], "Date": [ - "Thu, 04 Jun 2015 01:40:31 GMT" + "Thu, 04 Jun 2015 19:27:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1980,10 +1989,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "393" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1998,7 +2007,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b5856a4-e848-45e1-81c3-d206bd5a7a56" + "62acf555-6b9a-4891-a316-2651ed7d586e" ], "Cache-Control": [ "no-cache" @@ -2008,40 +2017,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "14931" ], "x-ms-correlation-request-id": [ - "5c225e7a-1183-4c5b-9681-878e29e938f6" + "3d2dfb8f-6be4-41ae-96b7-ca9bd1e0dd9e" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015221Z:5c225e7a-1183-4c5b-9681-878e29e938f6" + "WESTUS:20150604T192803Z:3d2dfb8f-6be4-41ae-96b7-ca9bd1e0dd9e" ], "Date": [ - "Thu, 04 Jun 2015 01:52:20 GMT" + "Thu, 04 Jun 2015 19:28:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Compute/virtualMachines/vmpstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyNTI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2529.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2529\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg2529\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg2529\",\r\n \"location\": \"Southeast Asia\"\r\n}", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1113" - ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2529.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2529\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Compute/virtualMachines/vmpstestrg2529\",\r\n \"name\": \"vmpstestrg2529\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1365" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2052,14 +2055,11 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f400291-95c5-4b32-9998-7c3d8fe29155" + "7ebe58a0-8155-4348-981e-a699e306e2f5" ], "Cache-Control": [ "no-cache" @@ -2068,24 +2068,24 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" ], "x-ms-correlation-request-id": [ - "ae6af995-f369-45cd-a626-ac9562ac67ad" + "ef9fda44-4f93-4d5a-a772-6e489e01c1ca" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013016Z:ae6af995-f369-45cd-a626-ac9562ac67ad" + "WESTUS:20150604T192833Z:ef9fda44-4f93-4d5a-a772-6e489e01c1ca" ], "Date": [ - "Thu, 04 Jun 2015 01:30:15 GMT" + "Thu, 04 Jun 2015 19:28:33 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2093,7 +2093,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2111,7 +2111,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5503604-7a14-4f9a-a4ed-05798358bf0f" + "2859a4ff-222e-46d2-8884-c8ac662a38a2" ], "Cache-Control": [ "no-cache" @@ -2121,23 +2121,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14925" ], "x-ms-correlation-request-id": [ - "c7781496-cdd0-4575-b47c-54e70fcbbb2b" + "7806e197-6960-48ab-96f7-46e4ebeb8225" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013038Z:c7781496-cdd0-4575-b47c-54e70fcbbb2b" + "WESTUS:20150604T192903Z:7806e197-6960-48ab-96f7-46e4ebeb8225" ], "Date": [ - "Thu, 04 Jun 2015 01:30:38 GMT" + "Thu, 04 Jun 2015 19:29:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2145,7 +2145,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2163,7 +2163,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "372278db-2c7e-4154-80c5-2db1a8f0e3e3" + "0cd3457b-4f02-4a01-80dd-f85ef12709c1" ], "Cache-Control": [ "no-cache" @@ -2173,23 +2173,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14922" ], "x-ms-correlation-request-id": [ - "2c71c333-b3f7-4bf2-83fb-16f98707d6f3" + "23e9978e-4772-4f89-8826-02e1a1750c5f" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013109Z:2c71c333-b3f7-4bf2-83fb-16f98707d6f3" + "WESTUS:20150604T192934Z:23e9978e-4772-4f89-8826-02e1a1750c5f" ], "Date": [ - "Thu, 04 Jun 2015 01:31:08 GMT" + "Thu, 04 Jun 2015 19:29:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2197,7 +2197,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2215,7 +2215,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "540305a7-ab7f-47dd-a89d-7a1e23d3a685" + "a33add1e-b2db-4bf7-ac1c-d1c2a3c8a292" ], "Cache-Control": [ "no-cache" @@ -2225,23 +2225,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14919" ], "x-ms-correlation-request-id": [ - "d9c60dc3-01c3-432c-8da7-d4b22979a7fc" + "4ebef6ed-31ab-4346-9a33-fea36a9f7b54" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013200Z:d9c60dc3-01c3-432c-8da7-d4b22979a7fc" + "WESTUS:20150604T193004Z:4ebef6ed-31ab-4346-9a33-fea36a9f7b54" ], "Date": [ - "Thu, 04 Jun 2015 01:32:00 GMT" + "Thu, 04 Jun 2015 19:30:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/446bedbb-f128-4bd7-a4e8-2cb71c18657a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ2YmVkYmItZjEyOC00YmQ3LWE0ZTgtMmNiNzFjMTg2NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2249,10 +2249,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"446bedbb-f128-4bd7-a4e8-2cb71c18657a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-04T12:24:02.1840959-07:00\",\r\n \"endTime\": \"2015-06-04T12:30:05.1106377-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2267,7 +2267,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "94b4c40f-cd98-4e03-abbe-fd34b9351207" + "5698189e-ae42-4e72-8ac4-50813bd95cbe" ], "Cache-Control": [ "no-cache" @@ -2277,23 +2277,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14914" ], "x-ms-correlation-request-id": [ - "6846e7cd-108d-4e9c-87e2-75a2e4b49954" + "9d58148d-92d4-49a3-8545-225f5de7ac5c" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013231Z:6846e7cd-108d-4e9c-87e2-75a2e4b49954" + "WESTUS:20150604T193034Z:9d58148d-92d4-49a3-8545-225f5de7ac5c" ], "Date": [ - "Thu, 04 Jun 2015 01:32:31 GMT" + "Thu, 04 Jun 2015 19:30:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Compute/virtualMachines/vmpstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcxMDE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2301,10 +2301,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg1016.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg1016\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Network/networkInterfaces/nic0pstestrg1016\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Compute/virtualMachines/vmpstestrg1016\",\r\n \"name\": \"vmpstestrg1016\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "1345" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2319,7 +2319,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eac8209f-e4b8-45b4-b19c-8804d143aa97" + "a21e0ebd-9086-4b6f-87d2-b9515c5bae24" ], "Cache-Control": [ "no-cache" @@ -2329,37 +2329,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14913" ], "x-ms-correlation-request-id": [ - "61a6f83d-8545-4070-9a40-15ab1508c4a6" + "beb1423d-e517-4c82-ac0a-ba05be03a838" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013323Z:61a6f83d-8545-4070-9a40-15ab1508c4a6" + "WESTUS:20150604T193034Z:beb1423d-e517-4c82-ac0a-ba05be03a838" ], "Date": [ - "Thu, 04 Jun 2015 01:33:23 GMT" + "Thu, 04 Jun 2015 19:30:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1016/providers/Microsoft.Compute/virtualMachines/vmpstestrg1016?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcxMDE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2367,37 +2364,43 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5761fdde-72d3-4783-ba7f-7c6fb1d4c979?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6454936-078c-44de-922c-0db093712335" + "5761fdde-72d3-4783-ba7f-7c6fb1d4c979" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5761fdde-72d3-4783-ba7f-7c6fb1d4c979?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "ddb2f7fe-02fc-4081-8523-b33059d2e9a5" + "e237bab6-cc64-42fb-841f-d286e61e3ddf" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013415Z:ddb2f7fe-02fc-4081-8523-b33059d2e9a5" + "WESTUS:20150604T193034Z:e237bab6-cc64-42fb-841f-d286e61e3ddf" ], "Date": [ - "Thu, 04 Jun 2015 01:34:15 GMT" + "Thu, 04 Jun 2015 19:30:34 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5761fdde-72d3-4783-ba7f-7c6fb1d4c979?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTc2MWZkZGUtNzJkMy00NzgzLWJhN2YtN2M2ZmIxZDRjOTc5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2405,7 +2408,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"5761fdde-72d3-4783-ba7f-7c6fb1d4c979\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:30:34.7360175-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2423,7 +2426,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a0c2e33-a87f-40a3-afdd-e00e2fac55d5" + "aa0e4505-c1cc-4f76-9055-d6a22c650733" ], "Cache-Control": [ "no-cache" @@ -2433,23 +2436,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14912" ], "x-ms-correlation-request-id": [ - "67bac119-e154-462d-af96-7c185babdb0e" + "a45152d1-cf18-4d55-9d04-c13715365677" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013446Z:67bac119-e154-462d-af96-7c185babdb0e" + "WESTUS:20150604T193035Z:a45152d1-cf18-4d55-9d04-c13715365677" ], "Date": [ - "Thu, 04 Jun 2015 01:34:46 GMT" + "Thu, 04 Jun 2015 19:30:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/9f400291-95c5-4b32-9998-7c3d8fe29155?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlmNDAwMjkxLTk1YzUtNGIzMi05OTk4LTdjM2Q4ZmUyOTE1NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5761fdde-72d3-4783-ba7f-7c6fb1d4c979?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTc2MWZkZGUtNzJkMy00NzgzLWJhN2YtN2M2ZmIxZDRjOTc5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2457,10 +2460,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"9f400291-95c5-4b32-9998-7c3d8fe29155\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T18:30:13.0771154-07:00\",\r\n \"endTime\": \"2015-06-03T18:35:09.3601835-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"5761fdde-72d3-4783-ba7f-7c6fb1d4c979\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:30:34.7360175-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2475,7 +2478,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e321db3-6550-47fc-953d-fa74c28e515f" + "dc388b2f-39db-41ba-9b34-b4ee35d1543e" ], "Cache-Control": [ "no-cache" @@ -2485,23 +2488,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14907" ], "x-ms-correlation-request-id": [ - "b1cfd50b-e067-435c-b5c0-f38e9505dbab" + "eb36e21f-3f8c-4216-b458-f90a65ea2d5d" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013517Z:b1cfd50b-e067-435c-b5c0-f38e9505dbab" + "WESTUS:20150604T193105Z:eb36e21f-3f8c-4216-b458-f90a65ea2d5d" ], "Date": [ - "Thu, 04 Jun 2015 01:35:16 GMT" + "Thu, 04 Jun 2015 19:31:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Compute/virtualMachines/vmpstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyNTI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5761fdde-72d3-4783-ba7f-7c6fb1d4c979?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTc2MWZkZGUtNzJkMy00NzgzLWJhN2YtN2M2ZmIxZDRjOTc5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2509,10 +2512,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2529.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2529\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2529\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Compute/virtualMachines/vmpstestrg2529\",\r\n \"name\": \"vmpstestrg2529\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"5761fdde-72d3-4783-ba7f-7c6fb1d4c979\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:30:34.7360175-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1366" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2527,7 +2530,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "29af66b6-3271-4b2e-94b2-513871537923" + "604139ff-5488-487d-b357-61fd80ca61ab" ], "Cache-Control": [ "no-cache" @@ -2537,34 +2540,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14905" ], "x-ms-correlation-request-id": [ - "5cc2197b-74d1-47cb-9c14-bb0290220a25" + "72bbb8fa-b104-49ed-b830-790012cecab2" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013519Z:5cc2197b-74d1-47cb-9c14-bb0290220a25" + "WESTUS:20150604T193135Z:72bbb8fa-b104-49ed-b830-790012cecab2" ], "Date": [ - "Thu, 04 Jun 2015 01:35:18 GMT" + "Thu, 04 Jun 2015 19:31:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2529/providers/Microsoft.Compute/virtualMachines/vmpstestrg2529?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjUyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyNTI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5761fdde-72d3-4783-ba7f-7c6fb1d4c979?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTc2MWZkZGUtNzJkMy00NzgzLWJhN2YtN2M2ZmIxZDRjOTc5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"5761fdde-72d3-4783-ba7f-7c6fb1d4c979\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:30:34.7360175-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2572,43 +2578,37 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99235011-aae4-497d-a3d1-5c7406ed0c42" + "dfd51f8f-2c13-498c-a9b3-6d74e4fad49d" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" ], "x-ms-correlation-request-id": [ - "966cd2d8-a345-47cc-a5b3-bdbd590cfe01" + "2e1de8cd-be6b-43a8-8c96-c3fdeca8269e" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013524Z:966cd2d8-a345-47cc-a5b3-bdbd590cfe01" + "WESTUS:20150604T193205Z:2e1de8cd-be6b-43a8-8c96-c3fdeca8269e" ], "Date": [ - "Thu, 04 Jun 2015 01:35:23 GMT" + "Thu, 04 Jun 2015 19:32:04 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5MjM1MDExLWFhZTQtNDk3ZC1hM2QxLTVjNzQwNmVkMGM0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5761fdde-72d3-4783-ba7f-7c6fb1d4c979?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTc2MWZkZGUtNzJkMy00NzgzLWJhN2YtN2M2ZmIxZDRjOTc5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2616,7 +2616,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"99235011-aae4-497d-a3d1-5c7406ed0c42\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:35:22.2978339-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"5761fdde-72d3-4783-ba7f-7c6fb1d4c979\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:30:34.7360175-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2634,7 +2634,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "84c70b0a-fb4d-4ac8-af95-cb7e13b267f0" + "b1ee15a8-af58-4e89-a753-c0f64e480746" ], "Cache-Control": [ "no-cache" @@ -2644,23 +2644,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14900" ], "x-ms-correlation-request-id": [ - "5d146a44-4e00-45a6-922f-2027cf7408c1" + "e1a2c586-0fc5-4fa5-b8c6-3c780a93f6da" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013546Z:5d146a44-4e00-45a6-922f-2027cf7408c1" + "WESTUS:20150604T193235Z:e1a2c586-0fc5-4fa5-b8c6-3c780a93f6da" ], "Date": [ - "Thu, 04 Jun 2015 01:35:46 GMT" + "Thu, 04 Jun 2015 19:32:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5MjM1MDExLWFhZTQtNDk3ZC1hM2QxLTVjNzQwNmVkMGM0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5761fdde-72d3-4783-ba7f-7c6fb1d4c979?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTc2MWZkZGUtNzJkMy00NzgzLWJhN2YtN2M2ZmIxZDRjOTc5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2668,7 +2668,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"99235011-aae4-497d-a3d1-5c7406ed0c42\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:35:22.2978339-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"5761fdde-72d3-4783-ba7f-7c6fb1d4c979\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:30:34.7360175-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2686,7 +2686,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86fca51b-d917-431e-8f3a-880839dcab49" + "c26e5368-78bb-441a-98db-111e4c026b82" ], "Cache-Control": [ "no-cache" @@ -2696,23 +2696,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14898" ], "x-ms-correlation-request-id": [ - "68144d1c-094f-440c-862c-7704c6807be4" + "4ca8c989-ea8d-4df5-9746-d855d68539a9" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013638Z:68144d1c-094f-440c-862c-7704c6807be4" + "WESTUS:20150604T193305Z:4ca8c989-ea8d-4df5-9746-d855d68539a9" ], "Date": [ - "Thu, 04 Jun 2015 01:36:37 GMT" + "Thu, 04 Jun 2015 19:33:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5MjM1MDExLWFhZTQtNDk3ZC1hM2QxLTVjNzQwNmVkMGM0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5761fdde-72d3-4783-ba7f-7c6fb1d4c979?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTc2MWZkZGUtNzJkMy00NzgzLWJhN2YtN2M2ZmIxZDRjOTc5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2720,7 +2720,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"99235011-aae4-497d-a3d1-5c7406ed0c42\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:35:22.2978339-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"5761fdde-72d3-4783-ba7f-7c6fb1d4c979\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:30:34.7360175-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2738,7 +2738,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0f1d176-fe06-4a7c-82f8-31b31d02434b" + "f17e793e-4d9c-47a3-8339-df246220a1d2" ], "Cache-Control": [ "no-cache" @@ -2748,23 +2748,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14896" ], "x-ms-correlation-request-id": [ - "2deb8e53-b124-4587-a4de-7fff2dff11c9" + "2b15ba78-268a-4b7f-ade0-6f92afb29001" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013709Z:2deb8e53-b124-4587-a4de-7fff2dff11c9" + "WESTUS:20150604T193335Z:2b15ba78-268a-4b7f-ade0-6f92afb29001" ], "Date": [ - "Thu, 04 Jun 2015 01:37:08 GMT" + "Thu, 04 Jun 2015 19:33:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5MjM1MDExLWFhZTQtNDk3ZC1hM2QxLTVjNzQwNmVkMGM0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5761fdde-72d3-4783-ba7f-7c6fb1d4c979?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTc2MWZkZGUtNzJkMy00NzgzLWJhN2YtN2M2ZmIxZDRjOTc5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2772,10 +2772,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"99235011-aae4-497d-a3d1-5c7406ed0c42\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:35:22.2978339-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"5761fdde-72d3-4783-ba7f-7c6fb1d4c979\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-04T12:30:34.7360175-07:00\",\r\n \"endTime\": \"2015-06-04T12:33:46.7228599-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2790,7 +2790,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd211a60-5b5b-40d1-994e-5f73c77334ae" + "484d6c6b-5c18-4555-b181-d915a37343fb" ], "Cache-Control": [ "no-cache" @@ -2800,37 +2800,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14895" ], "x-ms-correlation-request-id": [ - "6d68edd0-1a55-4cc9-b42b-80d89ab1b9e1" + "9fa4efe1-d689-41f6-b66c-a8698afebc1b" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013740Z:6d68edd0-1a55-4cc9-b42b-80d89ab1b9e1" + "WESTUS:20150604T193406Z:9fa4efe1-d689-41f6-b66c-a8698afebc1b" ], "Date": [ - "Thu, 04 Jun 2015 01:37:39 GMT" + "Thu, 04 Jun 2015 19:34:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/99235011-aae4-497d-a3d1-5c7406ed0c42?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5MjM1MDExLWFhZTQtNDk3ZC1hM2QxLTVjNzQwNmVkMGM0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1016?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTAxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"99235011-aae4-497d-a3d1-5c7406ed0c42\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T18:35:22.2978339-07:00\",\r\n \"endTime\": \"2015-06-03T18:37:44.5018381-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "191" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2838,40 +2835,99 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "e7febf29-d0d3-4a25-91b9-ac11215b127c" + "1436ac26-c3b9-4fa9-b771-516f25f8c7e4" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "1436ac26-c3b9-4fa9-b771-516f25f8c7e4" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-routing-request-id": [ + "WESTUS:20150604T193406Z:1436ac26-c3b9-4fa9-b771-516f25f8c7e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 04 Jun 2015 19:34:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14942" + ], + "x-ms-request-id": [ + "668c307b-869b-4ca8-b5d3-1008c786a25c" ], "x-ms-correlation-request-id": [ - "2b5fafe7-563b-4298-a6f5-15b9b4a3710a" + "668c307b-869b-4ca8-b5d3-1008c786a25c" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013811Z:2b5fafe7-563b-4298-a6f5-15b9b4a3710a" + "WESTUS:20150604T193406Z:668c307b-869b-4ca8-b5d3-1008c786a25c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:38:10 GMT" + "Thu, 04 Jun 2015 19:34:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2529?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjUyOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2890,17 +2946,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" ], "x-ms-request-id": [ - "cf540174-69de-486e-af09-1b4fd52cf032" + "50275b99-95e7-4940-bca7-999e27739eca" ], "x-ms-correlation-request-id": [ - "cf540174-69de-486e-af09-1b4fd52cf032" + "50275b99-95e7-4940-bca7-999e27739eca" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013818Z:cf540174-69de-486e-af09-1b4fd52cf032" + "WESTUS:20150604T193421Z:50275b99-95e7-4940-bca7-999e27739eca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2909,17 +2965,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:38:17 GMT" + "Thu, 04 Jun 2015 19:34:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2945,16 +3001,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14939" ], "x-ms-request-id": [ - "ad36ac37-f685-41d7-8bcf-668b041b80ee" + "b06bc861-2663-46e8-89bc-c4b3bc549842" ], "x-ms-correlation-request-id": [ - "ad36ac37-f685-41d7-8bcf-668b041b80ee" + "b06bc861-2663-46e8-89bc-c4b3bc549842" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013818Z:ad36ac37-f685-41d7-8bcf-668b041b80ee" + "WESTUS:20150604T193436Z:b06bc861-2663-46e8-89bc-c4b3bc549842" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2963,17 +3019,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:38:18 GMT" + "Thu, 04 Jun 2015 19:34:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2999,16 +3055,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14937" ], "x-ms-request-id": [ - "b5337ae4-e320-4b22-8c6c-8e9fad37dcf6" + "c0734713-9a3e-44a3-b11a-9c9f0354d935" ], "x-ms-correlation-request-id": [ - "b5337ae4-e320-4b22-8c6c-8e9fad37dcf6" + "c0734713-9a3e-44a3-b11a-9c9f0354d935" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013834Z:b5337ae4-e320-4b22-8c6c-8e9fad37dcf6" + "WESTUS:20150604T193451Z:c0734713-9a3e-44a3-b11a-9c9f0354d935" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3017,17 +3073,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:38:33 GMT" + "Thu, 04 Jun 2015 19:34:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,16 +3109,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14936" ], "x-ms-request-id": [ - "14a8691e-3bf7-4c23-a1c1-6af0b72e6156" + "0be2df6a-d0c3-47b0-9746-f7fd9c34a876" ], "x-ms-correlation-request-id": [ - "14a8691e-3bf7-4c23-a1c1-6af0b72e6156" + "0be2df6a-d0c3-47b0-9746-f7fd9c34a876" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013850Z:14a8691e-3bf7-4c23-a1c1-6af0b72e6156" + "WESTUS:20150604T193506Z:0be2df6a-d0c3-47b0-9746-f7fd9c34a876" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3071,17 +3127,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:38:49 GMT" + "Thu, 04 Jun 2015 19:35:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,16 +3163,178 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14933" + ], + "x-ms-request-id": [ + "24fc7493-efbb-4cbc-9b8e-83b8703fbaa5" + ], + "x-ms-correlation-request-id": [ + "24fc7493-efbb-4cbc-9b8e-83b8703fbaa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T193521Z:24fc7493-efbb-4cbc-9b8e-83b8703fbaa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 04 Jun 2015 19:35:21 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ + "68533fcc-64d8-45cb-886a-b6f6e573c76f" + ], + "x-ms-correlation-request-id": [ + "68533fcc-64d8-45cb-886a-b6f6e573c76f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T193537Z:68533fcc-64d8-45cb-886a-b6f6e573c76f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 04 Jun 2015 19:35:37 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ + "95117722-222d-4c3c-b440-8b13015fd0ba" + ], + "x-ms-correlation-request-id": [ + "95117722-222d-4c3c-b440-8b13015fd0ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T193552Z:95117722-222d-4c3c-b440-8b13015fd0ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 04 Jun 2015 19:35:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ - "d48180ac-5161-4889-91fe-6d76cc2650fa" + "970d45b9-9fb1-406b-ad88-73503cab442c" ], "x-ms-correlation-request-id": [ - "d48180ac-5161-4889-91fe-6d76cc2650fa" + "970d45b9-9fb1-406b-ad88-73503cab442c" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013905Z:d48180ac-5161-4889-91fe-6d76cc2650fa" + "WESTUS:20150604T193607Z:970d45b9-9fb1-406b-ad88-73503cab442c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3125,17 +3343,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:39:04 GMT" + "Thu, 04 Jun 2015 19:36:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3161,16 +3379,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14919" ], "x-ms-request-id": [ - "d8a0a98d-09d9-4b84-9401-32c05780dd7b" + "68fff63c-e773-458c-8afd-cfda5c10035c" ], "x-ms-correlation-request-id": [ - "d8a0a98d-09d9-4b84-9401-32c05780dd7b" + "68fff63c-e773-458c-8afd-cfda5c10035c" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013920Z:d8a0a98d-09d9-4b84-9401-32c05780dd7b" + "WESTUS:20150604T193622Z:68fff63c-e773-458c-8afd-cfda5c10035c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3179,17 +3397,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:39:20 GMT" + "Thu, 04 Jun 2015 19:36:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3215,16 +3433,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14918" ], "x-ms-request-id": [ - "cfddd11a-e12b-416f-95a4-2125325996ed" + "6aa3f38d-d7c3-44d5-b6a7-eaf21bf2d365" ], "x-ms-correlation-request-id": [ - "cfddd11a-e12b-416f-95a4-2125325996ed" + "6aa3f38d-d7c3-44d5-b6a7-eaf21bf2d365" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013936Z:cfddd11a-e12b-416f-95a4-2125325996ed" + "WESTUS:20150604T193637Z:6aa3f38d-d7c3-44d5-b6a7-eaf21bf2d365" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3233,17 +3451,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:39:35 GMT" + "Thu, 04 Jun 2015 19:36:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MjktU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTWprdFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3266,16 +3484,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14915" ], "x-ms-request-id": [ - "5eb06000-0f13-4e88-9351-898d733b4728" + "107fb2d5-ecfe-4d42-933b-ce2704b2f40a" ], "x-ms-correlation-request-id": [ - "5eb06000-0f13-4e88-9351-898d733b4728" + "107fb2d5-ecfe-4d42-933b-ce2704b2f40a" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013951Z:5eb06000-0f13-4e88-9351-898d733b4728" + "WESTUS:20150604T193652Z:107fb2d5-ecfe-4d42-933b-ce2704b2f40a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3284,14 +3502,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:39:51 GMT" + "Thu, 04 Jun 2015 19:36:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2816?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg4940?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDk0MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -3317,16 +3535,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14914" ], "x-ms-request-id": [ - "4977ee78-dbe1-4f40-a068-d5f3e6aa4a8e" + "2290856c-fed8-407b-a4b6-b2f5a151447c" ], "x-ms-correlation-request-id": [ - "4977ee78-dbe1-4f40-a068-d5f3e6aa4a8e" + "2290856c-fed8-407b-a4b6-b2f5a151447c" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013951Z:4977ee78-dbe1-4f40-a068-d5f3e6aa4a8e" + "WESTUS:20150604T193652Z:2290856c-fed8-407b-a4b6-b2f5a151447c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3335,14 +3553,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:39:51 GMT" + "Thu, 04 Jun 2015 19:36:51 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2816?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg4940?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDk0MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -3362,16 +3580,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14888" + "14842" ], "x-ms-request-id": [ - "7a76472d-53fb-46b3-b914-908d516d0402" + "524716a8-1e35-4c5d-950e-cef288266ee5" ], "x-ms-correlation-request-id": [ - "7a76472d-53fb-46b3-b914-908d516d0402" + "524716a8-1e35-4c5d-950e-cef288266ee5" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T014945Z:7a76472d-53fb-46b3-b914-908d516d0402" + "WESTUS:20150604T194839Z:524716a8-1e35-4c5d-950e-cef288266ee5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3380,31 +3598,31 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:49:44 GMT" + "Thu, 04 Jun 2015 19:48:39 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2816?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg4940?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDk0MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "33" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816\",\r\n \"name\": \"pstestrg2816\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940\",\r\n \"name\": \"pstestrg4940\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "181" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3416,16 +3634,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "44e2e738-b8f6-49b6-a386-776bee71d73f" + "38937e86-bf85-4c52-9a7f-24520d75cfd1" ], "x-ms-correlation-request-id": [ - "44e2e738-b8f6-49b6-a386-776bee71d73f" + "38937e86-bf85-4c52-9a7f-24520d75cfd1" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013952Z:44e2e738-b8f6-49b6-a386-776bee71d73f" + "WESTUS:20150604T193654Z:38937e86-bf85-4c52-9a7f-24520d75cfd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3434,14 +3652,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:39:52 GMT" + "Thu, 04 Jun 2015 19:36:53 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3464,16 +3682,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14913" ], "x-ms-request-id": [ - "5b463b54-9427-4586-9199-38023f640692" + "5a8105df-7995-4aad-9709-ccf371d78a17" ], "x-ms-correlation-request-id": [ - "5b463b54-9427-4586-9199-38023f640692" + "5a8105df-7995-4aad-9709-ccf371d78a17" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013952Z:5b463b54-9427-4586-9199-38023f640692" + "WESTUS:20150604T193654Z:5a8105df-7995-4aad-9709-ccf371d78a17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3482,14 +3700,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:39:52 GMT" + "Thu, 04 Jun 2015 19:36:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2816/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg4940/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3515,16 +3733,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:698d2508-7516-4875-bfac-979c83a83669" + "westus:f9346c9f-6a3f-4965-af12-3b24c4061bdf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14911" ], "x-ms-correlation-request-id": [ - "e069e170-c1df-48e1-a2c7-b3031b7e6a0f" + "8008e95c-2d3d-46cd-93b4-5809ae7e0851" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013952Z:e069e170-c1df-48e1-a2c7-b3031b7e6a0f" + "WESTUS:20150604T193654Z:8008e95c-2d3d-46cd-93b4-5809ae7e0851" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3533,25 +3751,25 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:39:52 GMT" + "Thu, 04 Jun 2015 19:36:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Storage/storageAccounts/stopstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Storage/storageAccounts/stopstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNDk0MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "89" + "93" ], "x-ms-client-request-id": [ - "bad63fa4-cd3d-432e-9256-d9d5840c7fd8" + "24b06600-1857-405e-95a1-ec845d5d1bf4" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -3575,44 +3793,44 @@ "25" ], "x-ms-request-id": [ - "7fe0f2f3-b253-46ef-8f7d-73ffda94c301" + "c1197854-8f49-4f79-81ef-da3083483119" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7fe0f2f3-b253-46ef-8f7d-73ffda94c301?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/c1197854-8f49-4f79-81ef-da3083483119?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "8284bd4e-d3a8-4112-a76f-afba39311878" + "8a825f94-46e2-42b9-ac5b-30a5cf526f96" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013956Z:8284bd4e-d3a8-4112-a76f-afba39311878" + "WESTUS:20150604T193700Z:8a825f94-46e2-42b9-ac5b-30a5cf526f96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:39:55 GMT" + "Thu, 04 Jun 2015 19:36:59 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7fe0f2f3-b253-46ef-8f7d-73ffda94c301?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdmZTBmMmYzLWIyNTMtNDZlZi04ZjdkLTczZmZkYTk0YzMwMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/c1197854-8f49-4f79-81ef-da3083483119?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2MxMTk3ODU0LThmNDktNGY3OS04MWVmLWRhMzA4MzQ4MzExOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76765990-327e-4cca-9ba7-2c9319494e09" + "672550c7-971b-48f5-a4ae-bda0734c52df" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -3636,53 +3854,53 @@ "25" ], "x-ms-request-id": [ - "9cd75705-61f3-455b-970f-bc0f48766c42" + "97ba0e1c-9449-45e8-89e8-7831379d6ad2" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7fe0f2f3-b253-46ef-8f7d-73ffda94c301?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/c1197854-8f49-4f79-81ef-da3083483119?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14912" ], "x-ms-correlation-request-id": [ - "52a03bda-0b65-4826-8b2a-2e116b25bb38" + "ff0de1b3-cd31-48b1-9924-cc67d20fe65b" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T013956Z:52a03bda-0b65-4826-8b2a-2e116b25bb38" + "WESTUS:20150604T193701Z:ff0de1b3-cd31-48b1-9924-cc67d20fe65b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:39:56 GMT" + "Thu, 04 Jun 2015 19:37:00 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7fe0f2f3-b253-46ef-8f7d-73ffda94c301?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdmZTBmMmYzLWIyNTMtNDZlZi04ZjdkLTczZmZkYTk0YzMwMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/c1197854-8f49-4f79-81ef-da3083483119?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2MxMTk3ODU0LThmNDktNGY3OS04MWVmLWRhMzA4MzQ4MzExOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c59e1a6-ba27-40b7-a7f9-7ca42541f3b9" + "958f751f-34ab-4109-a4a6-c169c912209e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "66" + "70" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3694,7 +3912,7 @@ "no-cache" ], "x-ms-request-id": [ - "6e89a151-cacf-4b36-8502-32ad96028329" + "30c2dc15-58d1-4c0b-8f23-dcd896d31b7c" ], "Cache-Control": [ "no-cache" @@ -3704,40 +3922,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14909" ], "x-ms-correlation-request-id": [ - "f58103f8-a7ae-4056-87e2-433dbfc6f8cf" + "12cb6689-294b-44b4-b8a1-3e2ef29aa30a" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T014021Z:f58103f8-a7ae-4056-87e2-433dbfc6f8cf" + "WESTUS:20150604T193726Z:12cb6689-294b-44b4-b8a1-3e2ef29aa30a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:40:21 GMT" + "Thu, 04 Jun 2015 19:37:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Storage/storageAccounts/stopstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Storage/storageAccounts/stopstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNDk0MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b8a80ad-e0cc-4a7f-9702-ea539a8c3a41" + "d6d28568-d6a9-490c-81af-b7f6c2a9f275" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Storage/storageAccounts/stopstestrg2816\",\r\n \"name\": \"stopstestrg2816\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg2816.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2816.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2816.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:39:53.3822571Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Storage/storageAccounts/stopstestrg4940\",\r\n \"name\": \"stopstestrg4940\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg4940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg4940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg4940.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West Europe\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"North Europe\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T19:36:57.3943112Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "685" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3749,7 +3967,7 @@ "no-cache" ], "x-ms-request-id": [ - "1889aea2-aff8-4777-b2e7-abd051a6598a" + "1c13790f-c2bd-4bec-a71f-b060863362d4" ], "Cache-Control": [ "no-cache" @@ -3759,40 +3977,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14908" ], "x-ms-correlation-request-id": [ - "47bef013-d3c3-4821-b81a-e58d5c86cd89" + "8f713422-e8af-4afe-b586-cfc89ddf4e8d" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T014021Z:47bef013-d3c3-4821-b81a-e58d5c86cd89" + "WESTUS:20150604T193726Z:8f713422-e8af-4afe-b586-cfc89ddf4e8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:40:21 GMT" + "Thu, 04 Jun 2015 19:37:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Storage/storageAccounts/stopstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Storage/storageAccounts/stopstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNDk0MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebcdcb6b-9b6d-4310-9ff2-b968181a7e4f" + "f77078c7-020a-4f08-b00d-ec82a79e0c7c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Storage/storageAccounts/stopstestrg2816\",\r\n \"name\": \"stopstestrg2816\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg2816.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2816.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2816.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:39:53.3822571Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Storage/storageAccounts/stopstestrg4940\",\r\n \"name\": \"stopstestrg4940\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg4940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg4940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg4940.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West Europe\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"North Europe\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T19:36:57.3943112Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "685" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3804,7 +4022,7 @@ "no-cache" ], "x-ms-request-id": [ - "0c65c840-99d3-49ad-9124-d821b05c1c87" + "ecb44eb7-4b25-4370-a44c-f5682726cbe3" ], "Cache-Control": [ "no-cache" @@ -3814,26 +4032,26 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14907" ], "x-ms-correlation-request-id": [ - "a8558a9a-0450-4147-9171-a770d7cbe2a3" + "195a1999-1e2a-4c16-94f2-a07306499464" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T014022Z:a8558a9a-0450-4147-9171-a770d7cbe2a3" + "WESTUS:20150604T193726Z:195a1999-1e2a-4c16-94f2-a07306499464" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:40:21 GMT" + "Thu, 04 Jun 2015 19:37:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ5NDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3859,13 +4077,13 @@ "gateway" ], "x-ms-request-id": [ - "b15fd4bb-fb4b-481c-b36a-28379e0d22a1" + "97001587-66fa-4baf-9406-802b82c0eda1" ], "x-ms-correlation-request-id": [ - "b15fd4bb-fb4b-481c-b36a-28379e0d22a1" + "97001587-66fa-4baf-9406-802b82c0eda1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014023Z:b15fd4bb-fb4b-481c-b36a-28379e0d22a1" + "WESTUS:20150604T193726Z:97001587-66fa-4baf-9406-802b82c0eda1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3874,14 +4092,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:40:22 GMT" + "Thu, 04 Jun 2015 19:37:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ5NDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3889,10 +4107,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816\",\r\n \"etag\": \"W/\\\"d4099633-5d67-440f-a7e3-96cb10f5786a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\",\r\n \"etag\": \"W/\\\"d4099633-5d67-440f-a7e3-96cb10f5786a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg4940\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4940\",\r\n \"etag\": \"W/\\\"a8822f12-99e5-46d3-a44a-e535453839b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg4940\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4940/subnets/subnetpstestrg4940\",\r\n \"etag\": \"W/\\\"a8822f12-99e5-46d3-a44a-e535453839b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "964" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3904,7 +4122,7 @@ "no-cache" ], "x-ms-request-id": [ - "a2e1e7cd-31a5-4cf3-b682-25f81a690282" + "33de8989-23dd-4c94-98b9-3b462d27228d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3913,30 +4131,30 @@ "no-cache" ], "ETag": [ - "W/\"d4099633-5d67-440f-a7e3-96cb10f5786a\"" + "W/\"a8822f12-99e5-46d3-a44a-e535453839b9\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14904" ], "x-ms-correlation-request-id": [ - "f8908676-e290-4be9-a7ef-140e4208ac43" + "1ab1da81-c9c9-4ea1-86ea-51fe91f6bb13" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014026Z:f8908676-e290-4be9-a7ef-140e4208ac43" + "WESTUS:20150604T193731Z:1ab1da81-c9c9-4ea1-86ea-51fe91f6bb13" ], "Date": [ - "Thu, 04 Jun 2015 01:40:25 GMT" + "Thu, 04 Jun 2015 19:37:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ5NDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3944,10 +4162,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816\",\r\n \"etag\": \"W/\\\"d4099633-5d67-440f-a7e3-96cb10f5786a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\",\r\n \"etag\": \"W/\\\"d4099633-5d67-440f-a7e3-96cb10f5786a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg4940\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4940\",\r\n \"etag\": \"W/\\\"a8822f12-99e5-46d3-a44a-e535453839b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg4940\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4940/subnets/subnetpstestrg4940\",\r\n \"etag\": \"W/\\\"a8822f12-99e5-46d3-a44a-e535453839b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "964" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3959,7 +4177,7 @@ "no-cache" ], "x-ms-request-id": [ - "ef29e6e2-e4a8-4107-99f8-2712ef439bec" + "3dcc5375-d8d3-42f1-aee8-f1b757c4a0ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3968,47 +4186,47 @@ "no-cache" ], "ETag": [ - "W/\"d4099633-5d67-440f-a7e3-96cb10f5786a\"" + "W/\"a8822f12-99e5-46d3-a44a-e535453839b9\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14903" ], "x-ms-correlation-request-id": [ - "245df58d-65f3-4e65-ae26-8cccf2b286b1" + "589215c4-cb75-42b7-be6f-450bd5416e41" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014026Z:245df58d-65f3-4e65-ae26-8cccf2b286b1" + "WESTUS:20150604T193732Z:589215c4-cb75-42b7-be6f-450bd5416e41" ], "Date": [ - "Thu, 04 Jun 2015 01:40:26 GMT" + "Thu, 04 Jun 2015 19:37:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ5NDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg2816\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg2816\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg4940\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg4940\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "501" + "505" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816\",\r\n \"etag\": \"W/\\\"4ee1c679-288e-4fce-a201-0485b79a5980\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\",\r\n \"etag\": \"W/\\\"4ee1c679-288e-4fce-a201-0485b79a5980\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg4940\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4940\",\r\n \"etag\": \"W/\\\"25289d0a-b03a-4fa1-87f4-e2fe1fbed393\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg4940\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4940/subnets/subnetpstestrg4940\",\r\n \"etag\": \"W/\\\"25289d0a-b03a-4fa1-87f4-e2fe1fbed393\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westeurope\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4023,10 +4241,10 @@ "10" ], "x-ms-request-id": [ - "4d94dec6-fb30-4c03-880e-955f5ac3e8c1" + "ed9adb95-3389-4b0c-af4a-fb76a8bbf803" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/4d94dec6-fb30-4c03-880e-955f5ac3e8c1?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westeurope/operations/ed9adb95-3389-4b0c-af4a-fb76a8bbf803?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4039,23 +4257,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "be76e0f9-a5ac-4f71-92cd-bc2c397b2303" + "b468d76c-3806-4827-a1e3-642c2d086acb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014026Z:be76e0f9-a5ac-4f71-92cd-bc2c397b2303" + "WESTUS:20150604T193730Z:b468d76c-3806-4827-a1e3-642c2d086acb" ], "Date": [ - "Thu, 04 Jun 2015 01:40:25 GMT" + "Thu, 04 Jun 2015 19:37:30 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/4d94dec6-fb30-4c03-880e-955f5ac3e8c1?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGQ5NGRlYzYtZmIzMC00YzAzLTg4MGUtOTU1ZjVhYzNlOGMxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westeurope/operations/ed9adb95-3389-4b0c-af4a-fb76a8bbf803?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2VkOWFkYjk1LTMzODktNGIwYy1hZjRhLWZiNzZhOGJiZjgwMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4081,7 +4299,7 @@ "no-cache" ], "x-ms-request-id": [ - "9c36cea0-35dd-4bb8-8ef5-32420ab37ea4" + "decab07b-28f8-4e72-92ff-9c317521504c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4094,23 +4312,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14905" ], "x-ms-correlation-request-id": [ - "ee3a9c13-5eeb-4e47-8494-3709228300cb" + "f16e6288-5014-481b-bb32-b604a675d44a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014026Z:ee3a9c13-5eeb-4e47-8494-3709228300cb" + "WESTUS:20150604T193731Z:f16e6288-5014-481b-bb32-b604a675d44a" ], "Date": [ - "Thu, 04 Jun 2015 01:40:25 GMT" + "Thu, 04 Jun 2015 19:37:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/networkInterfaces/nic0pstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNDk0MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4136,40 +4354,419 @@ "gateway" ], "x-ms-request-id": [ - "3ea85965-208b-4e13-a831-41747fff3736" + "1b807cfd-d6ce-48c6-98e7-4dac66d89126" + ], + "x-ms-correlation-request-id": [ + "1b807cfd-d6ce-48c6-98e7-4dac66d89126" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T193732Z:1b807cfd-d6ce-48c6-98e7-4dac66d89126" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 04 Jun 2015 19:37:31 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/networkInterfaces/nic0pstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNDk0MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg4940\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/networkInterfaces/nic0pstestrg4940\",\r\n \"etag\": \"W/\\\"4e0c61c5-2831-49d9-bccf-4ee3b047dd15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/networkInterfaces/nic0pstestrg4940/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4e0c61c5-2831-49d9-bccf-4ee3b047dd15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4940/subnets/subnetpstestrg4940\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1096" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4e722404-ccb2-45e2-a406-3ea48db01d29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4e0c61c5-2831-49d9-bccf-4ee3b047dd15\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-correlation-request-id": [ + "59c92e85-ba56-485c-ad0c-8d059ad7a8fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T193737Z:59c92e85-ba56-485c-ad0c-8d059ad7a8fa" + ], + "Date": [ + "Thu, 04 Jun 2015 19:37:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/networkInterfaces/nic0pstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNDk0MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4940/subnets/subnetpstestrg4940\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg4940\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "652" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg4940\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/networkInterfaces/nic0pstestrg4940\",\r\n \"etag\": \"W/\\\"4e0c61c5-2831-49d9-bccf-4ee3b047dd15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/networkInterfaces/nic0pstestrg4940/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4e0c61c5-2831-49d9-bccf-4ee3b047dd15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4940/subnets/subnetpstestrg4940\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westeurope\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1096" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a0171884-c5e1-42f1-bb2a-f3a9c5529709" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westeurope/operations/a0171884-c5e1-42f1-bb2a-f3a9c5529709?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "b4876f44-8431-4e9c-ba7a-4323d1447395" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T193736Z:b4876f44-8431-4e9c-ba7a-4323d1447395" + ], + "Date": [ + "Thu, 04 Jun 2015 19:37:35 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westeurope/operations/a0171884-c5e1-42f1-bb2a-f3a9c5529709?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2EwMTcxODg0LWM1ZTEtNDJmMS1iYjJhLWYzYTljNTUyOTcwOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6adafed6-a41e-470e-9113-81d89dd5adb8" + ], + "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": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "81ac58cd-1011-4140-b81d-4ee22cf7b31e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T193736Z:81ac58cd-1011-4140-b81d-4ee22cf7b31e" + ], + "Date": [ + "Thu, 04 Jun 2015 19:37:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/zend\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "40451" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "53d390e2-9306-4f3f-ab38-2e7e004c5d4c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-correlation-request-id": [ + "b72c74d1-d771-438e-8614-8b1aaea94ba2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T193738Z:b72c74d1-d771-438e-8614-8b1aaea94ba2" + ], + "Date": [ + "Thu, 04 Jun 2015 19:37:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "266" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3fff4cbb-fd27-46ef-892b-16a971a675d0" + ], + "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": [ + "8f90a295-38d8-47d2-acc1-aa2fb5c31853" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T193739Z:8f90a295-38d8-47d2-acc1-aa2fb5c31853" + ], + "Date": [ + "Thu, 04 Jun 2015 19:37:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "859" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1413795d-2bf4-4f54-9ea6-046a99447e53" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-correlation-request-id": [ + "6107afc7-3142-4748-9ae7-2944d8b88eb9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T193740Z:6107afc7-3142-4748-9ae7-2944d8b88eb9" + ], + "Date": [ + "Thu, 04 Jun 2015 19:37:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAwOC1SMi1TUDEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westeurope\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "597" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "80963417-e6de-485a-9201-d267dba0e644" + ], + "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": [ - "3ea85965-208b-4e13-a831-41747fff3736" + "1985f21e-977e-40b0-927b-dd14badde2b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014026Z:3ea85965-208b-4e13-a831-41747fff3736" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150604T193741Z:1985f21e-977e-40b0-927b-dd14badde2b7" ], "Date": [ - "Thu, 04 Jun 2015 01:40:26 GMT" + "Thu, 04 Jun 2015 19:37:40 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAwOC1SMi1TUDEvdmVyc2lvbnMvMi4wLjIwMTUwMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816\",\r\n \"etag\": \"W/\\\"8198e199-2809-44fb-bffa-49097dd50866\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8198e199-2809-44fb-bffa-49097dd50866\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westeurope\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westeurope/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1092" + "401" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4180,57 +4777,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "d25a2fbb-6bbf-43fc-97dc-739d5eb9264d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "2e78a90b-6c83-458a-a4af-b0fdea06ad2f" + ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"8198e199-2809-44fb-bffa-49097dd50866\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14886" ], "x-ms-correlation-request-id": [ - "ec2e5607-afc4-4e62-8b1c-59516da14af8" + "70cc71df-19c7-4c38-b369-1301d0e47d02" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014029Z:ec2e5607-afc4-4e62-8b1c-59516da14af8" + "WESTUS:20150604T193741Z:70cc71df-19c7-4c38-b369-1301d0e47d02" ], "Date": [ - "Thu, 04 Jun 2015 01:40:28 GMT" + "Thu, 04 Jun 2015 19:37:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Compute/virtualMachines/vmpstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc0OTQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg2816\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4940.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg4940\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg4940\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/networkInterfaces/nic0pstestrg4940\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg4940\",\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "648" + "1069" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg2816\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816\",\r\n \"etag\": \"W/\\\"8198e199-2809-44fb-bffa-49097dd50866\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"8198e199-2809-44fb-bffa-49097dd50866\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2816/subnets/subnetpstestrg2816\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4940.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg4940\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/networkInterfaces/nic0pstestrg4940\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Compute/virtualMachines/vmpstestrg4940\",\r\n \"name\": \"vmpstestrg4940\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westeurope\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1092" + "1348" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4241,15 +4835,15 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "92c9ff19-c184-4eea-aeaa-a9c03f04e155" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/92c9ff19-c184-4eea-aeaa-a9c03f04e155?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "397bda70-999e-46c1-b84c-43f00c17c7bc" + ], "Cache-Control": [ "no-cache" ], @@ -4258,37 +4852,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "f5dfde46-7251-4f3f-819e-b51eff6102d6" + "da46cfc7-3073-4542-a577-2026b20ef4d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014029Z:f5dfde46-7251-4f3f-819e-b51eff6102d6" + "WESTUS:20150604T193747Z:da46cfc7-3073-4542-a577-2026b20ef4d6" ], "Date": [ - "Thu, 04 Jun 2015 01:40:28 GMT" + "Thu, 04 Jun 2015 19:37:47 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/92c9ff19-c184-4eea-aeaa-a9c03f04e155?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTJjOWZmMTktYzE4NC00ZWVhLWFlYWEtYTljMDNmMDRlMTU1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4299,12 +4890,12 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ba02be7c-62d0-4d0d-a06e-a94dfa705f68" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "ebff3bac-db0a-4503-9a31-43635860c7b8" + ], "Cache-Control": [ "no-cache" ], @@ -4313,40 +4904,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14883" ], "x-ms-correlation-request-id": [ - "445a49d7-7843-4afe-b1d3-2cfaa4af5793" + "660a8ab0-462d-407d-9785-1f738b529165" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014029Z:445a49d7-7843-4afe-b1d3-2cfaa4af5793" + "WESTUS:20150604T193748Z:660a8ab0-462d-407d-9785-1f738b529165" ], "Date": [ - "Thu, 04 Jun 2015 01:40:28 GMT" + "Thu, 04 Jun 2015 19:37:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Compute/virtualMachines/vmpstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyODE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2816.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2816\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg2816\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg2816\",\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1106" - ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2816.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2816\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Compute/virtualMachines/vmpstestrg2816\",\r\n \"name\": \"vmpstestrg2816\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1358" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4357,14 +4942,11 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "684a858a-091d-4972-aa99-4fb34f64d0d8" + "56c0f1f7-07a4-4b0e-892f-2a5528f17be3" ], "Cache-Control": [ "no-cache" @@ -4373,24 +4955,24 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" ], "x-ms-correlation-request-id": [ - "80646eed-c6e0-40ae-8e25-9632de48548a" + "c2bc6372-3b91-49b7-a578-4b5d64cca7cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014036Z:80646eed-c6e0-40ae-8e25-9632de48548a" + "WESTUS:20150604T193819Z:c2bc6372-3b91-49b7-a578-4b5d64cca7cd" ], "Date": [ - "Thu, 04 Jun 2015 01:40:36 GMT" + "Thu, 04 Jun 2015 19:38:18 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4398,7 +4980,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4416,7 +4998,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6548dcbe-857b-4706-9dd6-737bb6776d11" + "9bc9404d-4bdf-40d0-b5f4-874cb7bb18d3" ], "Cache-Control": [ "no-cache" @@ -4426,23 +5008,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14877" ], "x-ms-correlation-request-id": [ - "da1eb5e1-32ee-4fc5-b12f-38ee8d06360e" + "07d760c0-612b-4603-a34f-1e86cdce7e7c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014036Z:da1eb5e1-32ee-4fc5-b12f-38ee8d06360e" + "WESTUS:20150604T193849Z:07d760c0-612b-4603-a34f-1e86cdce7e7c" ], "Date": [ - "Thu, 04 Jun 2015 01:40:36 GMT" + "Thu, 04 Jun 2015 19:38:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4450,7 +5032,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4468,7 +5050,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2473560-7e11-4974-8633-2b2fb5520c0d" + "9beb16b1-e640-4a54-8333-21dc84585e17" ], "Cache-Control": [ "no-cache" @@ -4478,23 +5060,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14875" ], "x-ms-correlation-request-id": [ - "03aa0602-7ac4-4d0e-a327-23667513f880" + "83f20b9c-1eeb-4715-a9fb-95040bfbb9b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014106Z:03aa0602-7ac4-4d0e-a327-23667513f880" + "WESTUS:20150604T193920Z:83f20b9c-1eeb-4715-a9fb-95040bfbb9b7" ], "Date": [ - "Thu, 04 Jun 2015 01:41:06 GMT" + "Thu, 04 Jun 2015 19:39:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4502,7 +5084,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4520,7 +5102,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "944aa22b-0cc3-4d40-bdaf-763c4732a6d6" + "c8800fa4-111a-4735-b2ec-4fe8ae425d27" ], "Cache-Control": [ "no-cache" @@ -4530,23 +5112,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14874" ], "x-ms-correlation-request-id": [ - "191d5d36-e6f2-45fc-983d-2cd589bfb262" + "58ac9350-a663-4058-9e4d-eb1cd5e6503b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014137Z:191d5d36-e6f2-45fc-983d-2cd589bfb262" + "WESTUS:20150604T193951Z:58ac9350-a663-4058-9e4d-eb1cd5e6503b" ], "Date": [ - "Thu, 04 Jun 2015 01:41:36 GMT" + "Thu, 04 Jun 2015 19:39:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4554,7 +5136,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4572,7 +5154,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d21edc90-1ccc-40f1-8f0a-9e8a2c2347e8" + "3b9389c5-a21c-4520-b7dd-fac95d48cadc" ], "Cache-Control": [ "no-cache" @@ -4582,23 +5164,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14875" ], "x-ms-correlation-request-id": [ - "b9781e5e-fdd4-49f9-8046-b332c5d97f23" + "4b1a27fa-e85d-4e42-9d8a-7b4d7be18bd5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014207Z:b9781e5e-fdd4-49f9-8046-b332c5d97f23" + "WESTUS:20150604T194022Z:4b1a27fa-e85d-4e42-9d8a-7b4d7be18bd5" ], "Date": [ - "Thu, 04 Jun 2015 01:42:07 GMT" + "Thu, 04 Jun 2015 19:40:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4606,7 +5188,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4624,7 +5206,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2fa2129-ea51-4e3e-b916-8104c04fe151" + "2d17184f-47f0-4c86-9d65-176f67ff019b" ], "Cache-Control": [ "no-cache" @@ -4634,23 +5216,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14872" ], "x-ms-correlation-request-id": [ - "629ebb2a-3d0c-4455-a41b-a15f62ddc939" + "d6c4b8a1-7ae5-4c6a-a5f5-4f71341d88c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014237Z:629ebb2a-3d0c-4455-a41b-a15f62ddc939" + "WESTUS:20150604T194052Z:d6c4b8a1-7ae5-4c6a-a5f5-4f71341d88c5" ], "Date": [ - "Thu, 04 Jun 2015 01:42:36 GMT" + "Thu, 04 Jun 2015 19:40:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4658,7 +5240,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4676,7 +5258,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df1d2ac3-94ef-4af7-bb32-d54a4ba50fbb" + "e69a7a70-34e3-4a1d-b4e9-b2783ebdce5c" ], "Cache-Control": [ "no-cache" @@ -4686,23 +5268,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14869" ], "x-ms-correlation-request-id": [ - "1973697f-9b42-47d7-b6e2-bbee3a9e1678" + "2656be41-d3fc-4e5e-8aec-178cd378dd04" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014307Z:1973697f-9b42-47d7-b6e2-bbee3a9e1678" + "WESTUS:20150604T194123Z:2656be41-d3fc-4e5e-8aec-178cd378dd04" ], "Date": [ - "Thu, 04 Jun 2015 01:43:07 GMT" + "Thu, 04 Jun 2015 19:41:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4710,7 +5292,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4728,7 +5310,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02350de8-6f22-4d45-96c6-2da260e4b5b6" + "484bf804-6afb-49b7-bd71-0f3e8f23960d" ], "Cache-Control": [ "no-cache" @@ -4738,23 +5320,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14863" ], "x-ms-correlation-request-id": [ - "8d171bf7-0eb8-4860-9cbd-5b1a5c975da0" + "5f75bb83-95ab-48b9-9d3b-bd2ddea48ff1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014338Z:8d171bf7-0eb8-4860-9cbd-5b1a5c975da0" + "WESTUS:20150604T194153Z:5f75bb83-95ab-48b9-9d3b-bd2ddea48ff1" ], "Date": [ - "Thu, 04 Jun 2015 01:43:38 GMT" + "Thu, 04 Jun 2015 19:41:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4762,7 +5344,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4780,7 +5362,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17c7f4ff-e96d-4c4c-ac40-848e8b520745" + "ea52db35-4d44-4d93-a5ae-ccfce834fe03" ], "Cache-Control": [ "no-cache" @@ -4790,23 +5372,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14859" ], "x-ms-correlation-request-id": [ - "e438d40c-4899-4fae-bad1-e028e3d50865" + "4ed253b7-9f3c-4aa5-8824-6365d4aa5e6f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014408Z:e438d40c-4899-4fae-bad1-e028e3d50865" + "WESTUS:20150604T194224Z:4ed253b7-9f3c-4aa5-8824-6365d4aa5e6f" ], "Date": [ - "Thu, 04 Jun 2015 01:44:07 GMT" + "Thu, 04 Jun 2015 19:42:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4814,7 +5396,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4832,7 +5414,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e05b142-6f2b-41b5-9d24-2899ee8f8e01" + "ff49eae5-ff42-4df2-b74b-0ea0401f0813" ], "Cache-Control": [ "no-cache" @@ -4842,23 +5424,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14855" ], "x-ms-correlation-request-id": [ - "c7ff4d7b-10f3-4f1d-8c22-4beef6230686" + "78bde74d-149a-4de1-a43d-b0cc0208a47c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014438Z:c7ff4d7b-10f3-4f1d-8c22-4beef6230686" + "WESTUS:20150604T194255Z:78bde74d-149a-4de1-a43d-b0cc0208a47c" ], "Date": [ - "Thu, 04 Jun 2015 01:44:38 GMT" + "Thu, 04 Jun 2015 19:42:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4866,7 +5448,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4884,7 +5466,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72146706-54a8-4137-9f25-98de1d96bc84" + "657e83b3-1bcd-4215-9903-fa3d01af0be6" ], "Cache-Control": [ "no-cache" @@ -4894,23 +5476,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14854" ], "x-ms-correlation-request-id": [ - "fa9e3d72-7b26-4d97-8a57-43e9b4ec6b7f" + "930b7070-cf80-4ad7-b04f-caaa773348ff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014508Z:fa9e3d72-7b26-4d97-8a57-43e9b4ec6b7f" + "WESTUS:20150604T194326Z:930b7070-cf80-4ad7-b04f-caaa773348ff" ], "Date": [ - "Thu, 04 Jun 2015 01:45:08 GMT" + "Thu, 04 Jun 2015 19:43:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4918,7 +5500,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4936,7 +5518,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "514e608b-8868-42b0-b595-4726e4ca27d3" + "c48b3430-83de-4203-8f0c-d2bbe494843f" ], "Cache-Control": [ "no-cache" @@ -4946,23 +5528,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14850" ], "x-ms-correlation-request-id": [ - "5d6959dc-54d1-41d8-84b5-4b9971d81f93" + "fb41bed9-212d-4bc1-8674-6729033cd0e0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014538Z:5d6959dc-54d1-41d8-84b5-4b9971d81f93" + "WESTUS:20150604T194356Z:fb41bed9-212d-4bc1-8674-6729033cd0e0" ], "Date": [ - "Thu, 04 Jun 2015 01:45:38 GMT" + "Thu, 04 Jun 2015 19:43:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4970,7 +5552,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4988,7 +5570,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "347919ed-9063-4217-a68a-b4a98cb70a51" + "1d09747d-ca90-4886-9b53-b9ba7c4bd4f6" ], "Cache-Control": [ "no-cache" @@ -4998,23 +5580,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14846" ], "x-ms-correlation-request-id": [ - "225d1587-a6fe-4d28-bbec-2ac6fe87598a" + "ac780b48-c8c1-4c54-81dc-333f64ad5189" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014609Z:225d1587-a6fe-4d28-bbec-2ac6fe87598a" + "WESTUS:20150604T194427Z:ac780b48-c8c1-4c54-81dc-333f64ad5189" ], "Date": [ - "Thu, 04 Jun 2015 01:46:09 GMT" + "Thu, 04 Jun 2015 19:44:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5022,7 +5604,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5040,7 +5622,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4883f8b6-b7a7-4cc7-aefa-6b0140cccff8" + "d5ed9f63-eb0e-4e8a-814d-470f9dbc0daf" ], "Cache-Control": [ "no-cache" @@ -5050,23 +5632,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14843" ], "x-ms-correlation-request-id": [ - "11bae80b-9748-4d88-8910-cf0b16eec28f" + "b9a5bd98-e980-4f97-8624-ed1ca74f8818" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014639Z:11bae80b-9748-4d88-8910-cf0b16eec28f" + "WESTUS:20150604T194458Z:b9a5bd98-e980-4f97-8624-ed1ca74f8818" ], "Date": [ - "Thu, 04 Jun 2015 01:46:39 GMT" + "Thu, 04 Jun 2015 19:44:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/684a858a-091d-4972-aa99-4fb34f64d0d8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjg0YTg1OGEtMDkxZC00OTcyLWFhOTktNGZiMzRmNjRkMGQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5074,10 +5656,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"684a858a-091d-4972-aa99-4fb34f64d0d8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T18:40:34.3427218-07:00\",\r\n \"endTime\": \"2015-06-03T18:46:49.7688453-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5092,7 +5674,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1175cf9e-3896-459c-9b94-986cd5934ab6" + "ccf20198-f181-4501-bb90-d88f0f7e7daf" ], "Cache-Control": [ "no-cache" @@ -5102,23 +5684,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14848" ], "x-ms-correlation-request-id": [ - "32682ca3-075d-4e0a-af23-87620aaaec57" + "16948452-5e0e-4d0f-a9c7-e786dcad01e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014709Z:32682ca3-075d-4e0a-af23-87620aaaec57" + "WESTUS:20150604T194528Z:16948452-5e0e-4d0f-a9c7-e786dcad01e5" ], "Date": [ - "Thu, 04 Jun 2015 01:47:09 GMT" + "Thu, 04 Jun 2015 19:45:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Compute/virtualMachines/vmpstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyODE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5126,10 +5708,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2816.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg2816\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Network/networkInterfaces/nic0pstestrg2816\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Compute/virtualMachines/vmpstestrg2816\",\r\n \"name\": \"vmpstestrg2816\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1359" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5144,7 +5726,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "db9218af-3d20-4ee5-81eb-7d707d20cd9c" + "e7969c35-ea72-478e-958c-8abff8f53506" ], "Cache-Control": [ "no-cache" @@ -5154,34 +5736,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14841" ], "x-ms-correlation-request-id": [ - "05053713-7a17-41c1-9d78-3f546a049fbb" + "719a8f33-9e08-43bb-be62-53846482077e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014710Z:05053713-7a17-41c1-9d78-3f546a049fbb" + "WESTUS:20150604T194559Z:719a8f33-9e08-43bb-be62-53846482077e" ], "Date": [ - "Thu, 04 Jun 2015 01:47:09 GMT" + "Thu, 04 Jun 2015 19:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2816/providers/Microsoft.Compute/virtualMachines/vmpstestrg2816?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjgxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyODE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/397bda70-999e-46c1-b84c-43f00c17c7bc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM5N2JkYTcwLTk5OWUtNDZjMS1iODRjLTQzZjAwYzE3YzdiYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"397bda70-999e-46c1-b84c-43f00c17c7bc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-04T12:37:45.3697358-07:00\",\r\n \"endTime\": \"2015-06-04T12:46:18.5285207-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -5189,43 +5774,37 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d93b43aa-48a5-47ed-bf95-e47bc296d27e" + "078e8637-0028-436e-9c20-19795de88554" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14839" ], "x-ms-correlation-request-id": [ - "36b82704-db70-4ad5-a08f-9551dd61ba0a" + "9c4bad27-b9c1-4b3c-9183-5ed502d0bb8e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014713Z:36b82704-db70-4ad5-a08f-9551dd61ba0a" + "WESTUS:20150604T194629Z:9c4bad27-b9c1-4b3c-9183-5ed502d0bb8e" ], "Date": [ - "Thu, 04 Jun 2015 01:47:13 GMT" + "Thu, 04 Jun 2015 19:46:29 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Compute/virtualMachines/vmpstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc0OTQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5233,10 +5812,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4940.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg4940\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Network/networkInterfaces/nic0pstestrg4940\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Compute/virtualMachines/vmpstestrg4940\",\r\n \"name\": \"vmpstestrg4940\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westeurope\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "1349" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5251,7 +5830,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9dc7d725-b360-41ad-8001-045bd7d4c442" + "bdcef674-e23f-4bc5-9a6f-46d920d41d31" ], "Cache-Control": [ "no-cache" @@ -5261,23 +5840,78 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14838" ], "x-ms-correlation-request-id": [ - "e72608e4-cdbd-48f8-b2e7-84cdc4c3bd79" + "7d456ac3-78f3-4037-9e5d-21322cd32684" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014714Z:e72608e4-cdbd-48f8-b2e7-84cdc4c3bd79" + "WESTUS:20150604T194631Z:7d456ac3-78f3-4037-9e5d-21322cd32684" ], "Date": [ - "Thu, 04 Jun 2015 01:47:13 GMT" + "Thu, 04 Jun 2015 19:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg4940/providers/Microsoft.Compute/virtualMachines/vmpstestrg4940?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc0OTQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/8b0a0a13-3d1a-4914-b7ab-1740ee5946f3?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8b0a0a13-3d1a-4914-b7ab-1740ee5946f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/8b0a0a13-3d1a-4914-b7ab-1740ee5946f3?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "4c951920-a83f-448f-8cca-d56374c7e42a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150604T194636Z:4c951920-a83f-448f-8cca-d56374c7e42a" + ], + "Date": [ + "Thu, 04 Jun 2015 19:46:35 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/8b0a0a13-3d1a-4914-b7ab-1740ee5946f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzhiMGEwYTEzLTNkMWEtNDkxNC1iN2FiLTE3NDBlZTU5NDZmMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5285,7 +5919,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"8b0a0a13-3d1a-4914-b7ab-1740ee5946f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:46:34.0129143-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5303,7 +5937,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d29aa53-3819-4d49-b81b-9b13938b5e2f" + "da298f38-ea99-4df7-8f2a-3adbaa544f91" ], "Cache-Control": [ "no-cache" @@ -5313,23 +5947,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14837" ], "x-ms-correlation-request-id": [ - "b98ffe86-3540-46cb-a8ec-98e0f0fcd367" + "95c382a5-1608-4d53-8c2c-5d171f7db32e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014744Z:b98ffe86-3540-46cb-a8ec-98e0f0fcd367" + "WESTUS:20150604T194636Z:95c382a5-1608-4d53-8c2c-5d171f7db32e" ], "Date": [ - "Thu, 04 Jun 2015 01:47:43 GMT" + "Thu, 04 Jun 2015 19:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/8b0a0a13-3d1a-4914-b7ab-1740ee5946f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzhiMGEwYTEzLTNkMWEtNDkxNC1iN2FiLTE3NDBlZTU5NDZmMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5337,7 +5971,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"8b0a0a13-3d1a-4914-b7ab-1740ee5946f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:46:34.0129143-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5355,7 +5989,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2155117d-2396-4fc4-a426-d589a9c70dec" + "a3d42052-3e41-4c74-bd5d-f306545d8401" ], "Cache-Control": [ "no-cache" @@ -5365,23 +5999,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14834" ], "x-ms-correlation-request-id": [ - "e82771ea-9c46-4849-827f-cf3f4550211f" + "fe731deb-025f-4ebe-8f6e-e3768e290902" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014814Z:e82771ea-9c46-4849-827f-cf3f4550211f" + "WESTUS:20150604T194707Z:fe731deb-025f-4ebe-8f6e-e3768e290902" ], "Date": [ - "Thu, 04 Jun 2015 01:48:13 GMT" + "Thu, 04 Jun 2015 19:47:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/8b0a0a13-3d1a-4914-b7ab-1740ee5946f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzhiMGEwYTEzLTNkMWEtNDkxNC1iN2FiLTE3NDBlZTU5NDZmMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5389,7 +6023,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"8b0a0a13-3d1a-4914-b7ab-1740ee5946f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:46:34.0129143-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5407,7 +6041,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd24e5ff-9b5c-4b23-afc8-938b1f270764" + "59a4fe2d-9cca-447f-9b51-be88760d97cd" ], "Cache-Control": [ "no-cache" @@ -5417,23 +6051,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14830" ], "x-ms-correlation-request-id": [ - "b4e94695-ae52-4941-84fc-55d1729b5db7" + "2e6e389a-8d46-42e8-9e9a-c1fe99e15381" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014844Z:b4e94695-ae52-4941-84fc-55d1729b5db7" + "WESTUS:20150604T194738Z:2e6e389a-8d46-42e8-9e9a-c1fe99e15381" ], "Date": [ - "Thu, 04 Jun 2015 01:48:44 GMT" + "Thu, 04 Jun 2015 19:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/8b0a0a13-3d1a-4914-b7ab-1740ee5946f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzhiMGEwYTEzLTNkMWEtNDkxNC1iN2FiLTE3NDBlZTU5NDZmMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5441,7 +6075,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"8b0a0a13-3d1a-4914-b7ab-1740ee5946f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:46:34.0129143-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -5459,7 +6093,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7db7afd4-28d2-4da0-984e-2f2c78e82d7b" + "1ff52b4b-183b-4de4-be71-be584c301097" ], "Cache-Control": [ "no-cache" @@ -5469,23 +6103,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14825" ], "x-ms-correlation-request-id": [ - "481817ee-38c1-4c17-bc61-33347f9939a8" + "a11bb437-ed70-466b-ab03-e6b123702a88" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014915Z:481817ee-38c1-4c17-bc61-33347f9939a8" + "WESTUS:20150604T194809Z:a11bb437-ed70-466b-ab03-e6b123702a88" ], "Date": [ - "Thu, 04 Jun 2015 01:49:14 GMT" + "Thu, 04 Jun 2015 19:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/d93b43aa-48a5-47ed-bf95-e47bc296d27e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkzYjQzYWEtNDhhNS00N2VkLWJmOTUtZTQ3YmMyOTZkMjdlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/operations/8b0a0a13-3d1a-4914-b7ab-1740ee5946f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzhiMGEwYTEzLTNkMWEtNDkxNC1iN2FiLTE3NDBlZTU5NDZmMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5493,7 +6127,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d93b43aa-48a5-47ed-bf95-e47bc296d27e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T18:47:11.3315175-07:00\",\r\n \"endTime\": \"2015-06-03T18:49:33.5355279-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"8b0a0a13-3d1a-4914-b7ab-1740ee5946f3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-04T12:46:34.0129143-07:00\",\r\n \"endTime\": \"2015-06-04T12:48:26.9347673-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -5511,7 +6145,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32366c52-bde6-499e-a64c-45a22dcb9533" + "35986884-437a-4f0a-b785-0dc98af6664b" ], "Cache-Control": [ "no-cache" @@ -5521,23 +6155,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14820" ], "x-ms-correlation-request-id": [ - "c1ddd8bb-85ee-423b-a6ed-1e70536a395e" + "81543e4e-2010-4d3f-9549-b9c3f1255cf3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150604T014945Z:c1ddd8bb-85ee-423b-a6ed-1e70536a395e" + "WESTUS:20150604T194839Z:81543e4e-2010-4d3f-9549-b9c3f1255cf3" ], "Date": [ - "Thu, 04 Jun 2015 01:49:45 GMT" + "Thu, 04 Jun 2015 19:48:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2816?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjgxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg4940?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDk0MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5560,16 +6194,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "7f67b0d6-b157-4565-b13c-a374f9ed1d4e" + "73501932-5e10-4a7b-9232-37178d64eadf" ], "x-ms-correlation-request-id": [ - "7f67b0d6-b157-4565-b13c-a374f9ed1d4e" + "73501932-5e10-4a7b-9232-37178d64eadf" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T014945Z:7f67b0d6-b157-4565-b13c-a374f9ed1d4e" + "WESTUS:20150604T194843Z:73501932-5e10-4a7b-9232-37178d64eadf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5578,17 +6212,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:49:44 GMT" + "Thu, 04 Jun 2015 19:48:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TkRBdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5614,16 +6248,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" + "14841" ], "x-ms-request-id": [ - "c8de3ad6-aff8-443f-8b69-989709ce7f37" + "a015781f-9050-4ea9-a382-e437395a6647" ], "x-ms-correlation-request-id": [ - "c8de3ad6-aff8-443f-8b69-989709ce7f37" + "a015781f-9050-4ea9-a382-e437395a6647" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T014946Z:c8de3ad6-aff8-443f-8b69-989709ce7f37" + "WESTUS:20150604T194844Z:a015781f-9050-4ea9-a382-e437395a6647" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5632,17 +6266,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:49:45 GMT" + "Thu, 04 Jun 2015 19:48:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TkRBdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5668,16 +6302,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14840" ], "x-ms-request-id": [ - "05fc0b52-be35-466e-85be-17292e309b75" + "cc560649-0dfd-47b0-a580-6c2198293bac" ], "x-ms-correlation-request-id": [ - "05fc0b52-be35-466e-85be-17292e309b75" + "cc560649-0dfd-47b0-a580-6c2198293bac" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015001Z:05fc0b52-be35-466e-85be-17292e309b75" + "WESTUS:20150604T194859Z:cc560649-0dfd-47b0-a580-6c2198293bac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5686,17 +6320,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:50:00 GMT" + "Thu, 04 Jun 2015 19:48:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TkRBdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5722,16 +6356,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14882" + "14839" ], "x-ms-request-id": [ - "941d66d4-04e5-4f12-bc53-b53220708991" + "502c43e5-eb32-40d4-bad5-be32d7bae00f" ], "x-ms-correlation-request-id": [ - "941d66d4-04e5-4f12-bc53-b53220708991" + "502c43e5-eb32-40d4-bad5-be32d7bae00f" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015016Z:941d66d4-04e5-4f12-bc53-b53220708991" + "WESTUS:20150604T194914Z:502c43e5-eb32-40d4-bad5-be32d7bae00f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5740,17 +6374,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:50:15 GMT" + "Thu, 04 Jun 2015 19:49:14 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TkRBdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5776,16 +6410,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14881" + "14836" ], "x-ms-request-id": [ - "bc96f5ad-2a3d-419d-a009-fc45622ed406" + "bd1b7c3a-e580-4e5c-a689-ee2be5dea6ae" ], "x-ms-correlation-request-id": [ - "bc96f5ad-2a3d-419d-a009-fc45622ed406" + "bd1b7c3a-e580-4e5c-a689-ee2be5dea6ae" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015031Z:bc96f5ad-2a3d-419d-a009-fc45622ed406" + "WESTUS:20150604T194930Z:bd1b7c3a-e580-4e5c-a689-ee2be5dea6ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5794,17 +6428,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:50:30 GMT" + "Thu, 04 Jun 2015 19:49:29 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TkRBdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5830,16 +6464,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14878" + "14835" ], "x-ms-request-id": [ - "8d852cfd-b073-4473-ac6d-5c8631b3683b" + "fe8168c2-3f7a-4fca-b113-c4aa58b891a6" ], "x-ms-correlation-request-id": [ - "8d852cfd-b073-4473-ac6d-5c8631b3683b" + "fe8168c2-3f7a-4fca-b113-c4aa58b891a6" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015046Z:8d852cfd-b073-4473-ac6d-5c8631b3683b" + "WESTUS:20150604T194945Z:fe8168c2-3f7a-4fca-b113-c4aa58b891a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5848,17 +6482,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:50:46 GMT" + "Thu, 04 Jun 2015 19:49:45 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TkRBdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5884,16 +6518,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14834" ], "x-ms-request-id": [ - "81b91376-012d-4922-81d9-abd632b1730d" + "ceafebcf-63d6-489a-8a5a-9478a985e15c" ], "x-ms-correlation-request-id": [ - "81b91376-012d-4922-81d9-abd632b1730d" + "ceafebcf-63d6-489a-8a5a-9478a985e15c" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015101Z:81b91376-012d-4922-81d9-abd632b1730d" + "WESTUS:20150604T195001Z:ceafebcf-63d6-489a-8a5a-9478a985e15c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5902,17 +6536,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:51:00 GMT" + "Thu, 04 Jun 2015 19:50:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TkRBdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5938,16 +6572,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "14833" ], "x-ms-request-id": [ - "a2e0cb04-4a79-4945-a45b-30316bdcfbb7" + "0a40ce1d-6748-45a0-8512-6bfa51788c0c" ], "x-ms-correlation-request-id": [ - "a2e0cb04-4a79-4945-a45b-30316bdcfbb7" + "0a40ce1d-6748-45a0-8512-6bfa51788c0c" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015116Z:a2e0cb04-4a79-4945-a45b-30316bdcfbb7" + "WESTUS:20150604T195016Z:0a40ce1d-6748-45a0-8512-6bfa51788c0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5956,17 +6590,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:51:15 GMT" + "Thu, 04 Jun 2015 19:50:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4MTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5NDAtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TkRBdFYwVlRWRVZWVWs5UVJTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5989,16 +6623,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "14832" ], "x-ms-request-id": [ - "ab89ecd6-03ce-46ef-aabf-d1124657bee3" + "2a152105-bb80-4602-ad53-acfe04dfb105" ], "x-ms-correlation-request-id": [ - "ab89ecd6-03ce-46ef-aabf-d1124657bee3" + "2a152105-bb80-4602-ad53-acfe04dfb105" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015131Z:ab89ecd6-03ce-46ef-aabf-d1124657bee3" + "WESTUS:20150604T195031Z:2a152105-bb80-4602-ad53-acfe04dfb105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6007,14 +6641,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:51:31 GMT" + "Thu, 04 Jun 2015 19:50:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7743?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg575?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTc1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -6025,7 +6659,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "104" + "103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6040,16 +6674,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14831" ], "x-ms-request-id": [ - "f975a4a1-384a-4447-909f-599f906f3fcc" + "50662609-01ab-4b7f-8c49-4f2476aaaab3" ], "x-ms-correlation-request-id": [ - "f975a4a1-384a-4447-909f-599f906f3fcc" + "50662609-01ab-4b7f-8c49-4f2476aaaab3" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015131Z:f975a4a1-384a-4447-909f-599f906f3fcc" + "WESTUS:20150604T195031Z:50662609-01ab-4b7f-8c49-4f2476aaaab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6058,14 +6692,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:51:31 GMT" + "Thu, 04 Jun 2015 19:50:31 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7743?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg575?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTc1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -6085,16 +6719,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14782" ], "x-ms-request-id": [ - "58dc57a8-ceef-48d6-98c5-d506ae269f9d" + "ffbca872-acf4-4c65-9959-64d889e1ad71" ], "x-ms-correlation-request-id": [ - "58dc57a8-ceef-48d6-98c5-d506ae269f9d" + "ffbca872-acf4-4c65-9959-64d889e1ad71" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020347Z:58dc57a8-ceef-48d6-98c5-d506ae269f9d" + "WESTUS:20150604T200156Z:ffbca872-acf4-4c65-9959-64d889e1ad71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6103,31 +6737,31 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 02:03:46 GMT" + "Thu, 04 Jun 2015 20:01:55 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7743?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg575?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTc1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Southeast Asia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "36" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743\",\r\n \"name\": \"pstestrg7743\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575\",\r\n \"name\": \"pstestrg575\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6139,16 +6773,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-request-id": [ - "175bc825-2ece-4502-94ec-206fabbc9dc8" + "747118d8-9c1a-4319-91f0-1005dbe21e17" ], "x-ms-correlation-request-id": [ - "175bc825-2ece-4502-94ec-206fabbc9dc8" + "747118d8-9c1a-4319-91f0-1005dbe21e17" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015133Z:175bc825-2ece-4502-94ec-206fabbc9dc8" + "WESTUS:20150604T195037Z:747118d8-9c1a-4319-91f0-1005dbe21e17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6157,14 +6791,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:51:33 GMT" + "Thu, 04 Jun 2015 19:50:37 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6187,16 +6821,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14830" ], "x-ms-request-id": [ - "21c9b825-2330-41bf-873a-bbe5d19052a0" + "7a67f3b5-5c47-4d99-96ca-a92e2546e101" ], "x-ms-correlation-request-id": [ - "21c9b825-2330-41bf-873a-bbe5d19052a0" + "7a67f3b5-5c47-4d99-96ca-a92e2546e101" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015133Z:21c9b825-2330-41bf-873a-bbe5d19052a0" + "WESTUS:20150604T195037Z:7a67f3b5-5c47-4d99-96ca-a92e2546e101" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6205,14 +6839,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:51:33 GMT" + "Thu, 04 Jun 2015 19:50:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7743/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg575/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE0LTA3LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6238,16 +6872,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:7c018476-f690-42c6-87a6-431e2f3862eb" + "westus:a2ee2ba2-bdfe-4452-924c-774df127e21a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14853" ], "x-ms-correlation-request-id": [ - "df655959-6e87-4520-bf3c-eccbf23e71ce" + "9c606ac3-cb19-4e1a-9e35-ee4657198408" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015134Z:df655959-6e87-4520-bf3c-eccbf23e71ce" + "WESTUS:20150604T195038Z:9c606ac3-cb19-4e1a-9e35-ee4657198408" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6256,25 +6890,25 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:51:34 GMT" + "Thu, 04 Jun 2015 19:50:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Storage/storageAccounts/stopstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Storage/storageAccounts/stopstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc1NzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East Asia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "91" + "96" ], "x-ms-client-request-id": [ - "fe7a6cef-a562-4fee-8d29-7e2272a8cecd" + "166db8c5-7144-452f-a48f-2c319e62dcaa" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -6298,44 +6932,44 @@ "25" ], "x-ms-request-id": [ - "1cf63b42-a918-4c15-b87d-8bd47dc26e69" + "b4ca6d5a-8846-47c8-95c1-4d2b03551479" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/1cf63b42-a918-4c15-b87d-8bd47dc26e69?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/b4ca6d5a-8846-47c8-95c1-4d2b03551479?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "8cbcbedd-cb15-4dd6-8b21-cc4c6ba110fd" + "c436ebc0-e4dc-40ec-8720-9afaceba470a" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015141Z:8cbcbedd-cb15-4dd6-8b21-cc4c6ba110fd" + "WESTUS:20150604T195045Z:c436ebc0-e4dc-40ec-8720-9afaceba470a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:51:41 GMT" + "Thu, 04 Jun 2015 19:50:44 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/1cf63b42-a918-4c15-b87d-8bd47dc26e69?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzFjZjYzYjQyLWE5MTgtNGMxNS1iODdkLThiZDQ3ZGMyNmU2OT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/b4ca6d5a-8846-47c8-95c1-4d2b03551479?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I0Y2E2ZDVhLTg4NDYtNDdjOC05NWMxLTRkMmIwMzU1MTQ3OT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e1f1a6-30e8-41f1-b310-13f00a1b247a" + "1a2763a5-120b-4396-8a0f-b03a04e916a3" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -6359,53 +6993,53 @@ "25" ], "x-ms-request-id": [ - "8d0e9fcc-e3d3-4fff-afa5-85a29d9be750" + "a6729212-f6bc-42e3-bf85-3272d8304b2e" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/1cf63b42-a918-4c15-b87d-8bd47dc26e69?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/b4ca6d5a-8846-47c8-95c1-4d2b03551479?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14856" ], "x-ms-correlation-request-id": [ - "5ea9f68f-87c0-4c68-97ba-2a2568420b05" + "dfc377d4-80a7-4390-b6f1-563a679de149" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015142Z:5ea9f68f-87c0-4c68-97ba-2a2568420b05" + "WESTUS:20150604T195046Z:dfc377d4-80a7-4390-b6f1-563a679de149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:51:42 GMT" + "Thu, 04 Jun 2015 19:50:45 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/1cf63b42-a918-4c15-b87d-8bd47dc26e69?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzFjZjYzYjQyLWE5MTgtNGMxNS1iODdkLThiZDQ3ZGMyNmU2OT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/b4ca6d5a-8846-47c8-95c1-4d2b03551479?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I0Y2E2ZDVhLTg4NDYtNDdjOC05NWMxLTRkMmIwMzU1MTQ3OT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1a4e203-4e81-4efc-94d0-f7e677de40fa" + "43b60433-5335-49a1-afb3-2de6a73f2646" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "68" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6417,7 +7051,7 @@ "no-cache" ], "x-ms-request-id": [ - "f40fac37-fd51-4bdf-870f-680b8c49a784" + "3224c537-2f97-452a-b729-8ab65b001319" ], "Cache-Control": [ "no-cache" @@ -6427,40 +7061,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14853" ], "x-ms-correlation-request-id": [ - "5868ea13-115d-4c95-b148-0a3154383e2a" + "919c5929-6f57-4776-8d79-9fb998ace7b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015207Z:5868ea13-115d-4c95-b148-0a3154383e2a" + "WESTUS:20150604T195111Z:919c5929-6f57-4776-8d79-9fb998ace7b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:52:06 GMT" + "Thu, 04 Jun 2015 19:51:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Storage/storageAccounts/stopstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Storage/storageAccounts/stopstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc1NzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e10f0859-67d5-4ab9-a42b-95674c16b143" + "26563a77-ac64-463b-b4c3-923107d1981f" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Storage/storageAccounts/stopstestrg7743\",\r\n \"name\": \"stopstestrg7743\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7743.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7743.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7743.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:51:38.5755007Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Storage/storageAccounts/stopstestrg575\",\r\n \"name\": \"stopstestrg575\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg575.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg575.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg575.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T19:50:42.0053433Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "683" + "682" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6472,7 +7106,7 @@ "no-cache" ], "x-ms-request-id": [ - "953c1d63-9372-47a3-9f51-7643d6eb4e7a" + "f3fe1220-fb0e-4d64-a2f4-3c5e91f34f3d" ], "Cache-Control": [ "no-cache" @@ -6482,40 +7116,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14852" ], "x-ms-correlation-request-id": [ - "7aeca25b-ed0d-4253-9ee8-789d5d9c6ae0" + "4ba27960-b975-4f23-af92-ea816ec10d9d" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015207Z:7aeca25b-ed0d-4253-9ee8-789d5d9c6ae0" + "WESTUS:20150604T195111Z:4ba27960-b975-4f23-af92-ea816ec10d9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:52:06 GMT" + "Thu, 04 Jun 2015 19:51:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Storage/storageAccounts/stopstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Storage/storageAccounts/stopstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc1NzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "244a8b27-b279-4ff8-9589-308f61b9ed20" + "25a8cfee-e233-42c1-aaf7-a6fe61b91504" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Storage/storageAccounts/stopstestrg7743\",\r\n \"name\": \"stopstestrg7743\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7743.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7743.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7743.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T01:51:38.5755007Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Storage/storageAccounts/stopstestrg575\",\r\n \"name\": \"stopstestrg575\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg575.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg575.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg575.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-04T19:50:42.0053433Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "683" + "682" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6527,7 +7161,7 @@ "no-cache" ], "x-ms-request-id": [ - "0d079eb6-5d28-4acb-875f-31c30bf3c007" + "92c643af-8eea-4962-8014-692528143976" ], "Cache-Control": [ "no-cache" @@ -6537,26 +7171,26 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14851" ], "x-ms-correlation-request-id": [ - "c4716471-6bb4-41c2-bdc1-067a3e73a630" + "4f62cfa2-6b0d-48b7-8088-619ae918ad84" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015207Z:c4716471-6bb4-41c2-bdc1-067a3e73a630" + "WESTUS:20150604T195111Z:4f62cfa2-6b0d-48b7-8088-619ae918ad84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 04 Jun 2015 01:52:06 GMT" + "Thu, 04 Jun 2015 19:51:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc3NDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualnetworks/vnetpstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNTc1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6582,13 +7216,13 @@ "gateway" ], "x-ms-request-id": [ - "d31acfaa-de41-42e0-bac9-86eb8e735921" + "f53e192a-93bb-494b-9904-283623ebfcfd" ], "x-ms-correlation-request-id": [ - "d31acfaa-de41-42e0-bac9-86eb8e735921" + "f53e192a-93bb-494b-9904-283623ebfcfd" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015208Z:d31acfaa-de41-42e0-bac9-86eb8e735921" + "WESTUS:20150604T195112Z:f53e192a-93bb-494b-9904-283623ebfcfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6597,14 +7231,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:52:07 GMT" + "Thu, 04 Jun 2015 19:51:12 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc3NDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualnetworks/vnetpstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNTc1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6612,10 +7246,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743\",\r\n \"etag\": \"W/\\\"928fc10b-35e4-40d5-b673-dc663232082d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\",\r\n \"etag\": \"W/\\\"928fc10b-35e4-40d5-b673-dc663232082d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg575\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualNetworks/vnetpstestrg575\",\r\n \"etag\": \"W/\\\"1311cc99-eb0e-49c5-abec-41d04c76fd13\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg575\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualNetworks/vnetpstestrg575/subnets/subnetpstestrg575\",\r\n \"etag\": \"W/\\\"1311cc99-eb0e-49c5-abec-41d04c76fd13\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "962" + "960" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6627,7 +7261,7 @@ "no-cache" ], "x-ms-request-id": [ - "1dbad4ae-e47f-4148-b1e9-80a42d805cf0" + "65d977e8-2524-4b3b-859f-8f23ba28bb69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6636,30 +7270,30 @@ "no-cache" ], "ETag": [ - "W/\"928fc10b-35e4-40d5-b673-dc663232082d\"" + "W/\"1311cc99-eb0e-49c5-abec-41d04c76fd13\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "14872" ], "x-ms-correlation-request-id": [ - "89bcbbb8-9cb7-4640-9d5e-eb17eec563af" + "4dcb24fc-3c7d-4e76-96a1-da98cf3f0b24" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015214Z:89bcbbb8-9cb7-4640-9d5e-eb17eec563af" + "WESTUS:20150604T195120Z:4dcb24fc-3c7d-4e76-96a1-da98cf3f0b24" ], "Date": [ - "Thu, 04 Jun 2015 01:52:13 GMT" + "Thu, 04 Jun 2015 19:51:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc3NDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualnetworks/vnetpstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNTc1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6667,10 +7301,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743\",\r\n \"etag\": \"W/\\\"928fc10b-35e4-40d5-b673-dc663232082d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\",\r\n \"etag\": \"W/\\\"928fc10b-35e4-40d5-b673-dc663232082d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg575\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualNetworks/vnetpstestrg575\",\r\n \"etag\": \"W/\\\"1311cc99-eb0e-49c5-abec-41d04c76fd13\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg575\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualNetworks/vnetpstestrg575/subnets/subnetpstestrg575\",\r\n \"etag\": \"W/\\\"1311cc99-eb0e-49c5-abec-41d04c76fd13\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "962" + "960" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6682,7 +7316,7 @@ "no-cache" ], "x-ms-request-id": [ - "621c38bc-8727-4e7a-9e0c-c80475bc1de7" + "268b9412-d96b-47af-b949-a8b9530ec22b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6691,47 +7325,47 @@ "no-cache" ], "ETag": [ - "W/\"928fc10b-35e4-40d5-b673-dc663232082d\"" + "W/\"1311cc99-eb0e-49c5-abec-41d04c76fd13\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14871" ], "x-ms-correlation-request-id": [ - "5dd57a3a-a655-4f10-9f1e-5f166518d21f" + "b3a6efd7-16a2-4830-b596-f6b3f74a73cb" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015214Z:5dd57a3a-a655-4f10-9f1e-5f166518d21f" + "WESTUS:20150604T195121Z:b3a6efd7-16a2-4830-b596-f6b3f74a73cb" ], "Date": [ - "Thu, 04 Jun 2015 01:52:13 GMT" + "Thu, 04 Jun 2015 19:51:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc3NDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualnetworks/vnetpstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNTc1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg7743\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg7743\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg575\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg575\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"Southeast Asia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "503" + "506" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743\",\r\n \"etag\": \"W/\\\"c2e78a4d-b5d8-4612-bd8b-2b4c900de5c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\",\r\n \"etag\": \"W/\\\"c2e78a4d-b5d8-4612-bd8b-2b4c900de5c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg575\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualNetworks/vnetpstestrg575\",\r\n \"etag\": \"W/\\\"6c82e05d-a837-4e92-bb70-5438a31e4dfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg575\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualNetworks/vnetpstestrg575/subnets/subnetpstestrg575\",\r\n \"etag\": \"W/\\\"6c82e05d-a837-4e92-bb70-5438a31e4dfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "958" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6746,10 +7380,10 @@ "10" ], "x-ms-request-id": [ - "c0e47f76-4a08-4812-9e39-c068ac75aa0a" + "dfaf2376-714c-47b9-9b30-abe84a02c9da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/c0e47f76-4a08-4812-9e39-c068ac75aa0a?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/dfaf2376-714c-47b9-9b30-abe84a02c9da?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6762,23 +7396,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "b2d1351d-ba1f-4979-9353-c0fb6e9be82c" + "250ef82c-c67d-4c05-a23a-fc541e741669" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015213Z:b2d1351d-ba1f-4979-9353-c0fb6e9be82c" + "WESTUS:20150604T195119Z:250ef82c-c67d-4c05-a23a-fc541e741669" ], "Date": [ - "Thu, 04 Jun 2015 01:52:12 GMT" + "Thu, 04 Jun 2015 19:51:18 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/c0e47f76-4a08-4812-9e39-c068ac75aa0a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jMGU0N2Y3Ni00YTA4LTQ4MTItOWUzOS1jMDY4YWM3NWFhMGE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/dfaf2376-714c-47b9-9b30-abe84a02c9da?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RmYWYyMzc2LTcxNGMtNDdiOS05YjMwLWFiZTg0YTAyYzlkYT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6804,7 +7438,7 @@ "no-cache" ], "x-ms-request-id": [ - "08e04927-47d4-44c7-beb4-5f9f80b8c2e1" + "1b824efc-48a7-4b8a-9e5a-6f7a47cb861d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6817,23 +7451,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14873" ], "x-ms-correlation-request-id": [ - "075ce2b3-f786-4e5f-a9f6-86ebeba251d4" + "e3619e2d-86b1-4134-821d-1eb8cef65894" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015214Z:075ce2b3-f786-4e5f-a9f6-86ebeba251d4" + "WESTUS:20150604T195120Z:e3619e2d-86b1-4134-821d-1eb8cef65894" ], "Date": [ - "Thu, 04 Jun 2015 01:52:13 GMT" + "Thu, 04 Jun 2015 19:51:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/networkInterfaces/nic0pstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMwcHN0ZXN0cmc1NzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6859,13 +7493,13 @@ "gateway" ], "x-ms-request-id": [ - "dd4381be-d0af-420c-915c-fed8ba3df54b" + "7028a18e-b8c8-4b1e-9474-00376706d096" ], "x-ms-correlation-request-id": [ - "dd4381be-d0af-420c-915c-fed8ba3df54b" + "7028a18e-b8c8-4b1e-9474-00376706d096" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015214Z:dd4381be-d0af-420c-915c-fed8ba3df54b" + "WESTUS:20150604T195121Z:7028a18e-b8c8-4b1e-9474-00376706d096" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6874,14 +7508,14 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 01:52:13 GMT" + "Thu, 04 Jun 2015 19:51:20 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/networkInterfaces/nic0pstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMwcHN0ZXN0cmc1NzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6889,10 +7523,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743\",\r\n \"etag\": \"W/\\\"2a036c74-b5ac-4ea9-b1c8-8aa234e37dfb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2a036c74-b5ac-4ea9-b1c8-8aa234e37dfb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg575\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/networkInterfaces/nic0pstestrg575\",\r\n \"etag\": \"W/\\\"954e5af8-162b-43f3-a84f-cd7ebc820d4a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/networkInterfaces/nic0pstestrg575/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"954e5af8-162b-43f3-a84f-cd7ebc820d4a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualNetworks/vnetpstestrg575/subnets/subnetpstestrg575\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1094" + "1091" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6904,7 +7538,7 @@ "no-cache" ], "x-ms-request-id": [ - "edcad1da-eaa4-44dd-99a3-e602f1d0d511" + "be8acc19-c907-480b-b746-659047d7622b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6913,47 +7547,47 @@ "no-cache" ], "ETag": [ - "W/\"2a036c74-b5ac-4ea9-b1c8-8aa234e37dfb\"" + "W/\"954e5af8-162b-43f3-a84f-cd7ebc820d4a\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14866" ], "x-ms-correlation-request-id": [ - "5ab86dc6-9a08-4598-82e8-747df45d3909" + "073ebd28-ec75-42e6-8822-ff341b17203c" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015219Z:5ab86dc6-9a08-4598-82e8-747df45d3909" + "WESTUS:20150604T195127Z:073ebd28-ec75-42e6-8822-ff341b17203c" ], "Date": [ - "Thu, 04 Jun 2015 01:52:19 GMT" + "Thu, 04 Jun 2015 19:51:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMHBzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/networkInterfaces/nic0pstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMwcHN0ZXN0cmc1NzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg7743\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualNetworks/vnetpstestrg575/subnets/subnetpstestrg575\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic0pstestrg575\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"Southeast Asia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "650" + "651" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0pstestrg7743\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743\",\r\n \"etag\": \"W/\\\"2a036c74-b5ac-4ea9-b1c8-8aa234e37dfb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2a036c74-b5ac-4ea9-b1c8-8aa234e37dfb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7743/subnets/subnetpstestrg7743\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0pstestrg575\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/networkInterfaces/nic0pstestrg575\",\r\n \"etag\": \"W/\\\"954e5af8-162b-43f3-a84f-cd7ebc820d4a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/networkInterfaces/nic0pstestrg575/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"954e5af8-162b-43f3-a84f-cd7ebc820d4a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/virtualNetworks/vnetpstestrg575/subnets/subnetpstestrg575\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1094" + "1091" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6965,10 +7599,10 @@ "no-cache" ], "x-ms-request-id": [ - "c83f38dc-2641-4f11-b8cf-b31bee28afd2" + "8e9d4ce9-066c-4bc8-8064-ac55235e6bf3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/c83f38dc-2641-4f11-b8cf-b31bee28afd2?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/8e9d4ce9-066c-4bc8-8064-ac55235e6bf3?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6981,23 +7615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "a28f5606-e39d-4309-bcfc-46284fa1edad" + "aa716a13-7738-499b-a536-8c88697f58e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015218Z:a28f5606-e39d-4309-bcfc-46284fa1edad" + "WESTUS:20150604T195126Z:aa716a13-7738-499b-a536-8c88697f58e2" ], "Date": [ - "Thu, 04 Jun 2015 01:52:18 GMT" + "Thu, 04 Jun 2015 19:51:25 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/c83f38dc-2641-4f11-b8cf-b31bee28afd2?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jODNmMzhkYy0yNjQxLTRmMTEtYjhjZi1iMzFiZWUyOGFmZDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/8e9d4ce9-066c-4bc8-8064-ac55235e6bf3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlOWQ0Y2U5LTA2NmMtNGJjOC04MDY0LWFjNTUyMzVlNmJmMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7023,7 +7657,7 @@ "no-cache" ], "x-ms-request-id": [ - "5f96fe33-530b-47e0-a3f4-264ada6972ea" + "fe4e7d70-aa52-49e7-baf6-4b0f9b1f7487" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7036,40 +7670,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14867" ], "x-ms-correlation-request-id": [ - "73295d5a-36e2-4652-a623-3e81132f0a08" + "16a0ddb5-aa42-4e33-90db-66f127117d95" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015219Z:73295d5a-36e2-4652-a623-3e81132f0a08" + "WESTUS:20150604T195127Z:16a0ddb5-aa42-4e33-90db-66f127117d95" ], "Date": [ - "Thu, 04 Jun 2015 01:52:19 GMT" + "Thu, 04 Jun 2015 19:51:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Compute/virtualMachines/vmpstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3NzQzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7743.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7743\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg7743\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg7743\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1108" - ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7743.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7743\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Compute/virtualMachines/vmpstestrg7743\",\r\n \"name\": \"vmpstestrg7743\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1360" + "30345" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7080,14 +7708,11 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "053cf565-e628-4af6-828f-cf27881593ec" + "b2f62f5e-676c-475a-b170-1818ebf22bd5" ], "Cache-Control": [ "no-cache" @@ -7096,24 +7721,24 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14849" ], "x-ms-correlation-request-id": [ - "f80ef116-e927-46c6-9fd0-205ea51d2dae" + "e0c284fb-f4c8-4e51-9061-950f6f890311" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015225Z:f80ef116-e927-46c6-9fd0-205ea51d2dae" + "WESTUS:20150604T195129Z:e0c284fb-f4c8-4e51-9061-950f6f890311" ], "Date": [ - "Thu, 04 Jun 2015 01:52:25 GMT" + "Thu, 04 Jun 2015 19:51:28 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7121,10 +7746,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "141" + "272" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7139,7 +7764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a43aa42b-f3a8-4138-9907-90194c8acb11" + "31f4f73a-fd44-4629-8270-6f3a6afbf24a" ], "Cache-Control": [ "no-cache" @@ -7149,23 +7774,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "14848" ], "x-ms-correlation-request-id": [ - "09355321-b486-46b6-b625-89f859926ceb" + "44e6053e-3f05-4220-870a-0f330ff8f2d9" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015226Z:09355321-b486-46b6-b625-89f859926ceb" + "WESTUS:20150604T195130Z:44e6053e-3f05-4220-870a-0f330ff8f2d9" ], "Date": [ - "Thu, 04 Jun 2015 01:52:26 GMT" + "Thu, 04 Jun 2015 19:51:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7173,10 +7798,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "141" + "1203" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7191,7 +7816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a04cd51e-8427-4253-a9d4-30b2b714fdd5" + "bb8412d2-c5da-478f-b841-826830c05757" ], "Cache-Control": [ "no-cache" @@ -7201,23 +7826,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14847" ], "x-ms-correlation-request-id": [ - "3a344e71-5d2b-4d51-824f-fd6bd7a1ed01" + "49e36ffd-71e6-4cc5-83ad-a71ee1ad6d86" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015257Z:3a344e71-5d2b-4d51-824f-fd6bd7a1ed01" + "WESTUS:20150604T195131Z:49e36ffd-71e6-4cc5-83ad-a71ee1ad6d86" ], "Date": [ - "Thu, 04 Jun 2015 01:52:56 GMT" + "Thu, 04 Jun 2015 19:51:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAwOC1SMi1TUDEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7225,10 +7850,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "141" + "912" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7243,7 +7868,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "536e624b-ea37-416b-9f45-31f0198873c0" + "b9ce1026-bd39-436b-8775-7d648a5a09a9" ], "Cache-Control": [ "no-cache" @@ -7253,23 +7878,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14846" ], "x-ms-correlation-request-id": [ - "3e3e0179-ae43-45d1-a9a5-69b0d17086bd" + "9e151a6d-42aa-42b7-866c-d655ec3f2110" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015327Z:3e3e0179-ae43-45d1-a9a5-69b0d17086bd" + "WESTUS:20150604T195131Z:9e151a6d-42aa-42b7-866c-d655ec3f2110" ], "Date": [ - "Thu, 04 Jun 2015 01:53:27 GMT" + "Thu, 04 Jun 2015 19:51:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAwOC1SMi1TUDEvdmVyc2lvbnMvMi4wLjIwMTUwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7277,10 +7902,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "407" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7295,7 +7920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7faf272-9fe3-4e0f-93cd-b47c41f45c4e" + "1e587af6-66a3-4911-a9c9-e18415ecedc2" ], "Cache-Control": [ "no-cache" @@ -7305,34 +7930,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14845" ], "x-ms-correlation-request-id": [ - "b5290b93-ff78-4166-9009-75b246623027" + "7b72bf14-024f-4daf-8927-27d7905994e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015358Z:b5290b93-ff78-4166-9009-75b246623027" + "WESTUS:20150604T195132Z:7b72bf14-024f-4daf-8927-27d7905994e3" ], "Date": [ - "Thu, 04 Jun 2015 01:53:57 GMT" + "Thu, 04 Jun 2015 19:51:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Compute/virtualMachines/vmpstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzU3NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg575.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg575\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR#123pstestrg575\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/networkInterfaces/nic0pstestrg575\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg575\",\r\n \"location\": \"Southeast Asia\"\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1066" + ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg575.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg575\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/networkInterfaces/nic0pstestrg575\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Compute/virtualMachines/vmpstestrg575\",\r\n \"name\": \"vmpstestrg575\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "1344" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7343,11 +7974,14 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08f1dc23-2672-4301-8a8f-86b963031a0f" + "983902ce-99b6-4b52-bab0-714f9c0df52b" ], "Cache-Control": [ "no-cache" @@ -7356,24 +7990,24 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14888" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "cfb2e8be-8c21-4523-ac7b-cbbbe95261f8" + "10e6e645-267b-4161-a42d-8bb6b3c73b9f" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015429Z:cfb2e8be-8c21-4523-ac7b-cbbbe95261f8" + "WESTUS:20150604T195139Z:10e6e645-267b-4161-a42d-8bb6b3c73b9f" ], "Date": [ - "Thu, 04 Jun 2015 01:54:28 GMT" + "Thu, 04 Jun 2015 19:51:39 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7381,7 +8015,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7399,7 +8033,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e180373e-2411-4246-8261-190e8cd10988" + "158aea0a-0a65-4346-83c2-b92f25752017" ], "Cache-Control": [ "no-cache" @@ -7409,23 +8043,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14844" ], "x-ms-correlation-request-id": [ - "fdb46a53-ddae-4d4a-a290-f5ec19d11b0f" + "97c2782e-dfb5-49d8-86fe-2bfd9dbcaa94" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015459Z:fdb46a53-ddae-4d4a-a290-f5ec19d11b0f" + "WESTUS:20150604T195201Z:97c2782e-dfb5-49d8-86fe-2bfd9dbcaa94" ], "Date": [ - "Thu, 04 Jun 2015 01:54:59 GMT" + "Thu, 04 Jun 2015 19:52:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7433,7 +8067,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7451,7 +8085,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "571e863f-5bd4-455e-8e1b-0c2fb4b04883" + "bbc3570d-6631-44af-81c0-d94bcacb515c" ], "Cache-Control": [ "no-cache" @@ -7461,23 +8095,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14881" + "14839" ], "x-ms-correlation-request-id": [ - "4842d26c-7fc0-41e5-a6e6-43389f8e6058" + "b7e40628-3885-466e-ac09-9c53350f58b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015530Z:4842d26c-7fc0-41e5-a6e6-43389f8e6058" + "WESTUS:20150604T195232Z:b7e40628-3885-466e-ac09-9c53350f58b6" ], "Date": [ - "Thu, 04 Jun 2015 01:55:30 GMT" + "Thu, 04 Jun 2015 19:52:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7485,7 +8119,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7503,7 +8137,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b93a368-acc4-4a12-b72d-d946c46a99e7" + "cf5a1d3b-655f-4984-87af-a27bb4c00508" ], "Cache-Control": [ "no-cache" @@ -7513,23 +8147,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "14838" ], "x-ms-correlation-request-id": [ - "40c8e0a3-c5ab-4a05-a5bd-7c4967573008" + "ec6703c3-45b2-4360-b04c-8a8b258ec195" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015601Z:40c8e0a3-c5ab-4a05-a5bd-7c4967573008" + "WESTUS:20150604T195303Z:ec6703c3-45b2-4360-b04c-8a8b258ec195" ], "Date": [ - "Thu, 04 Jun 2015 01:56:01 GMT" + "Thu, 04 Jun 2015 19:53:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7537,7 +8171,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7555,7 +8189,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ac03641-7cc8-4772-9ba5-8032cd2cf466" + "863c1257-0883-4be7-831e-c08f49217426" ], "Cache-Control": [ "no-cache" @@ -7565,23 +8199,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "14836" ], "x-ms-correlation-request-id": [ - "be14d946-3afa-45f3-ab2a-bc6772a5dfc1" + "50ee7bdf-a05d-4d0a-9780-418ef9f66458" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015631Z:be14d946-3afa-45f3-ab2a-bc6772a5dfc1" + "WESTUS:20150604T195334Z:50ee7bdf-a05d-4d0a-9780-418ef9f66458" ], "Date": [ - "Thu, 04 Jun 2015 01:56:31 GMT" + "Thu, 04 Jun 2015 19:53:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7589,7 +8223,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7607,7 +8241,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64224d0a-81b0-46e3-8e3c-c7e203ff1adb" + "c3e6557e-0157-474d-8bee-3361ca9e0405" ], "Cache-Control": [ "no-cache" @@ -7617,23 +8251,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "14834" ], "x-ms-correlation-request-id": [ - "230a8551-5f64-44a3-8a0e-54f0e9118c59" + "36dce562-d24d-42b6-a509-4c7960815332" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015702Z:230a8551-5f64-44a3-8a0e-54f0e9118c59" + "WESTUS:20150604T195405Z:36dce562-d24d-42b6-a509-4c7960815332" ], "Date": [ - "Thu, 04 Jun 2015 01:57:02 GMT" + "Thu, 04 Jun 2015 19:54:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7641,7 +8275,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7659,7 +8293,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf4f9c14-bbd2-451f-92bd-42e288fb2893" + "b5427c57-b735-4daf-8316-4f709b74f4e5" ], "Cache-Control": [ "no-cache" @@ -7669,23 +8303,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14830" ], "x-ms-correlation-request-id": [ - "ee08324f-dbf2-4d91-857d-2945e6ecc68c" + "dbfda897-bd5d-46ba-ab6a-eb34deda984a" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015733Z:ee08324f-dbf2-4d91-857d-2945e6ecc68c" + "WESTUS:20150604T195435Z:dbfda897-bd5d-46ba-ab6a-eb34deda984a" ], "Date": [ - "Thu, 04 Jun 2015 01:57:33 GMT" + "Thu, 04 Jun 2015 19:54:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7693,7 +8327,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7711,7 +8345,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f7799f7-9415-4c70-b2d1-ae6c1bf67cd3" + "1f6c0934-73fb-4a77-90d0-3e35b9757f74" ], "Cache-Control": [ "no-cache" @@ -7721,23 +8355,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "14833" ], "x-ms-correlation-request-id": [ - "ccf1d211-25ca-44bc-8f16-9735834d59e6" + "e5b488d6-6399-4925-99f5-79dfd943e941" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015803Z:ccf1d211-25ca-44bc-8f16-9735834d59e6" + "WESTUS:20150604T195527Z:e5b488d6-6399-4925-99f5-79dfd943e941" ], "Date": [ - "Thu, 04 Jun 2015 01:58:03 GMT" + "Thu, 04 Jun 2015 19:55:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7745,7 +8379,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7763,7 +8397,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4aa8433-ef84-450d-abc3-18d3a376eeaf" + "35645f4c-26a7-4536-ad4e-2ed10d27fd6c" ], "Cache-Control": [ "no-cache" @@ -7773,23 +8407,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "14828" ], "x-ms-correlation-request-id": [ - "2f3c6f9e-d9e2-4721-ac32-41a8cb0dfdec" + "802443f7-b01f-403c-b75b-507c9db83217" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015834Z:2f3c6f9e-d9e2-4721-ac32-41a8cb0dfdec" + "WESTUS:20150604T195619Z:802443f7-b01f-403c-b75b-507c9db83217" ], "Date": [ - "Thu, 04 Jun 2015 01:58:34 GMT" + "Thu, 04 Jun 2015 19:56:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7797,7 +8431,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7815,7 +8449,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be4c15f9-00de-4540-af31-7f94140bad53" + "a32a5894-c6b5-4464-be60-4c44fc04fe3e" ], "Cache-Control": [ "no-cache" @@ -7825,23 +8459,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14826" ], "x-ms-correlation-request-id": [ - "6e8975f6-3693-4026-ba7e-91b3d2c052d1" + "f0f0ac6c-cad0-4ea9-a0bc-8b73425cf4e4" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015905Z:6e8975f6-3693-4026-ba7e-91b3d2c052d1" + "WESTUS:20150604T195711Z:f0f0ac6c-cad0-4ea9-a0bc-8b73425cf4e4" ], "Date": [ - "Thu, 04 Jun 2015 01:59:04 GMT" + "Thu, 04 Jun 2015 19:57:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7849,7 +8483,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7867,7 +8501,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "990b2dbc-4a87-4301-8504-43aa01b69850" + "4a784939-c628-4bbf-a591-9758598c0cb0" ], "Cache-Control": [ "no-cache" @@ -7877,23 +8511,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14821" ], "x-ms-correlation-request-id": [ - "e925b64d-a2dd-4d0e-8983-bf6be96287d6" + "21d438f1-2f38-4c45-9a8d-13684c1e51d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T015935Z:e925b64d-a2dd-4d0e-8983-bf6be96287d6" + "WESTUS:20150604T195742Z:21d438f1-2f38-4c45-9a8d-13684c1e51d4" ], "Date": [ - "Thu, 04 Jun 2015 01:59:35 GMT" + "Thu, 04 Jun 2015 19:57:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7901,7 +8535,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7919,7 +8553,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d2ce31cc-2852-47a9-85a3-eb0390b9781f" + "5c09b9c2-f7cc-4a39-9f85-c684c83cbdf2" ], "Cache-Control": [ "no-cache" @@ -7929,23 +8563,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "14816" ], "x-ms-correlation-request-id": [ - "0d139f73-5fde-44bb-b408-b01c98db2170" + "febea665-47e1-4ce3-bd81-756b049b402f" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020006Z:0d139f73-5fde-44bb-b408-b01c98db2170" + "WESTUS:20150604T195813Z:febea665-47e1-4ce3-bd81-756b049b402f" ], "Date": [ - "Thu, 04 Jun 2015 02:00:06 GMT" + "Thu, 04 Jun 2015 19:58:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7953,7 +8587,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -7971,7 +8605,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca4316a8-d143-495a-b7d8-9eebacb153e8" + "205aadde-42cf-4c1b-be0f-a7a3a4f51c21" ], "Cache-Control": [ "no-cache" @@ -7981,23 +8615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" + "14815" ], "x-ms-correlation-request-id": [ - "cbc0bda5-a097-47be-92cb-fc88077705ab" + "046a0f97-ba12-4bdf-a1fe-36fb94cc21f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020037Z:cbc0bda5-a097-47be-92cb-fc88077705ab" + "WESTUS:20150604T195844Z:046a0f97-ba12-4bdf-a1fe-36fb94cc21f8" ], "Date": [ - "Thu, 04 Jun 2015 02:00:36 GMT" + "Thu, 04 Jun 2015 19:58:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/053cf565-e628-4af6-828f-cf27881593ec?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNTNjZjU2NS1lNjI4LTRhZjYtODI4Zi1jZjI3ODgxNTkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/983902ce-99b6-4b52-bab0-714f9c0df52b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4MzkwMmNlLTk5YjYtNGI1Mi1iYWIwLTcxNGY5YzBkZjUyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8005,7 +8639,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"053cf565-e628-4af6-828f-cf27881593ec\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T18:52:23.7435154-07:00\",\r\n \"endTime\": \"2015-06-03T19:00:46.4433985-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"983902ce-99b6-4b52-bab0-714f9c0df52b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-04T12:51:36.9540462-07:00\",\r\n \"endTime\": \"2015-06-04T12:58:45.9411648-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -8023,7 +8657,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e89f1d8c-10dc-4483-98d4-ffd4eaa2191b" + "62b2343b-ee9f-412e-b97f-abc76eb600a4" ], "Cache-Control": [ "no-cache" @@ -8033,23 +8667,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14845" + "14812" ], "x-ms-correlation-request-id": [ - "d92caef2-a897-4caa-98ae-51d8191a084b" + "52cbe6e6-c992-4386-9e3c-b71320ff6191" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020107Z:d92caef2-a897-4caa-98ae-51d8191a084b" + "WESTUS:20150604T195914Z:52cbe6e6-c992-4386-9e3c-b71320ff6191" ], "Date": [ - "Thu, 04 Jun 2015 02:01:07 GMT" + "Thu, 04 Jun 2015 19:59:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Compute/virtualMachines/vmpstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3NzQzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Compute/virtualMachines/vmpstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzU3NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8057,10 +8691,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7743.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg7743\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Network/networkInterfaces/nic0pstestrg7743\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Compute/virtualMachines/vmpstestrg7743\",\r\n \"name\": \"vmpstestrg7743\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg575.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cnpstestrg575\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Network/networkInterfaces/nic0pstestrg575\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Compute/virtualMachines/vmpstestrg575\",\r\n \"name\": \"vmpstestrg575\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1361" + "1345" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8075,7 +8709,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "182918ef-cd04-41e8-abcc-a036279f3d12" + "0d08ea58-02a8-44c7-8a3b-9bdc8c8899c6" ], "Cache-Control": [ "no-cache" @@ -8085,23 +8719,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14844" + "14811" ], "x-ms-correlation-request-id": [ - "0977ae60-e3c3-49cd-b4e3-fbb1c50c45fd" + "4eeb6408-e4a5-4fac-a724-67c21bea9cda" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020108Z:0977ae60-e3c3-49cd-b4e3-fbb1c50c45fd" + "WESTUS:20150604T195915Z:4eeb6408-e4a5-4fac-a724-67c21bea9cda" ], "Date": [ - "Thu, 04 Jun 2015 02:01:07 GMT" + "Thu, 04 Jun 2015 19:59:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7743/providers/Microsoft.Compute/virtualMachines/vmpstestrg7743?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzc0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3NzQzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg575/providers/Microsoft.Compute/virtualMachines/vmpstestrg575?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzU3NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -8121,42 +8755,42 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/f0ff44f8-d588-4890-a85d-9dbd263f49d0?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a34dd573-768b-4ed8-8213-d16973c35ea5" + "f0ff44f8-d588-4890-a85d-9dbd263f49d0" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/f0ff44f8-d588-4890-a85d-9dbd263f49d0?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "189e0222-1b65-40d9-b2ae-b5f1aba2ce02" + "c6ff2944-8f68-4035-a7ce-a5623e5042f9" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020112Z:189e0222-1b65-40d9-b2ae-b5f1aba2ce02" + "WESTUS:20150604T195920Z:c6ff2944-8f68-4035-a7ce-a5623e5042f9" ], "Date": [ - "Thu, 04 Jun 2015 02:01:12 GMT" + "Thu, 04 Jun 2015 19:59:20 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/f0ff44f8-d588-4890-a85d-9dbd263f49d0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YwZmY0NGY4LWQ1ODgtNDg5MC1hODVkLTlkYmQyNjNmNDlkMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8164,10 +8798,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f0ff44f8-d588-4890-a85d-9dbd263f49d0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:59:18.2694971-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8182,7 +8816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "281c7a84-d8c4-40f8-838f-b3b7eda87968" + "f607675e-dba0-41e6-a58f-2ec1fb6eb130" ], "Cache-Control": [ "no-cache" @@ -8192,23 +8826,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14843" + "14810" ], "x-ms-correlation-request-id": [ - "f7f0acc4-44d5-4c8c-ad0b-e1dac787d0ef" + "1afa0e78-1700-4175-814d-1fdc47a08523" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020113Z:f7f0acc4-44d5-4c8c-ad0b-e1dac787d0ef" + "WESTUS:20150604T195921Z:1afa0e78-1700-4175-814d-1fdc47a08523" ], "Date": [ - "Thu, 04 Jun 2015 02:01:13 GMT" + "Thu, 04 Jun 2015 19:59:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/f0ff44f8-d588-4890-a85d-9dbd263f49d0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YwZmY0NGY4LWQ1ODgtNDg5MC1hODVkLTlkYmQyNjNmNDlkMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8216,10 +8850,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f0ff44f8-d588-4890-a85d-9dbd263f49d0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:59:18.2694971-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8234,7 +8868,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "884af6d4-1177-4154-80aa-1b744823d4eb" + "c2fb5f91-62b2-4788-8d60-85f90f07de26" ], "Cache-Control": [ "no-cache" @@ -8244,23 +8878,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14809" ], "x-ms-correlation-request-id": [ - "532bf656-cda7-42d0-a66e-91eecc60b0b9" + "af5a1a4a-3757-43b0-b6aa-137ca57e7a2c" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020143Z:532bf656-cda7-42d0-a66e-91eecc60b0b9" + "WESTUS:20150604T195952Z:af5a1a4a-3757-43b0-b6aa-137ca57e7a2c" ], "Date": [ - "Thu, 04 Jun 2015 02:01:42 GMT" + "Thu, 04 Jun 2015 19:59:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/f0ff44f8-d588-4890-a85d-9dbd263f49d0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YwZmY0NGY4LWQ1ODgtNDg5MC1hODVkLTlkYmQyNjNmNDlkMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8268,10 +8902,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f0ff44f8-d588-4890-a85d-9dbd263f49d0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:59:18.2694971-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8286,7 +8920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b93eda54-5d4a-4e33-b867-996ed1fcf242" + "0a425cb9-2ce3-4600-9d52-f1568900133f" ], "Cache-Control": [ "no-cache" @@ -8296,23 +8930,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14838" + "14805" ], "x-ms-correlation-request-id": [ - "8c7bac52-f85b-41ed-bdec-8e45c137c25d" + "0d210453-6210-48b5-9e32-02f042eb45cc" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020214Z:8c7bac52-f85b-41ed-bdec-8e45c137c25d" + "WESTUS:20150604T200023Z:0d210453-6210-48b5-9e32-02f042eb45cc" ], "Date": [ - "Thu, 04 Jun 2015 02:02:13 GMT" + "Thu, 04 Jun 2015 20:00:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/f0ff44f8-d588-4890-a85d-9dbd263f49d0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YwZmY0NGY4LWQ1ODgtNDg5MC1hODVkLTlkYmQyNjNmNDlkMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8320,10 +8954,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f0ff44f8-d588-4890-a85d-9dbd263f49d0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:59:18.2694971-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8338,7 +8972,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bb3247b-d36d-4533-924f-dd5396b395dd" + "358a4f56-ffd9-4a03-a16a-a4e23f937e97" ], "Cache-Control": [ "no-cache" @@ -8348,23 +8982,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14800" ], "x-ms-correlation-request-id": [ - "2ad3a072-11ae-4914-8179-f3c07c097e8e" + "6f792195-73b2-40d6-929d-9dd2c0c507b2" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020244Z:2ad3a072-11ae-4914-8179-f3c07c097e8e" + "WESTUS:20150604T200054Z:6f792195-73b2-40d6-929d-9dd2c0c507b2" ], "Date": [ - "Thu, 04 Jun 2015 02:02:44 GMT" + "Thu, 04 Jun 2015 20:00:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/f0ff44f8-d588-4890-a85d-9dbd263f49d0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YwZmY0NGY4LWQ1ODgtNDg5MC1hODVkLTlkYmQyNjNmNDlkMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8372,10 +9006,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f0ff44f8-d588-4890-a85d-9dbd263f49d0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-04T12:59:18.2694971-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8390,7 +9024,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd619962-d558-47e2-bc43-b8d3e6e92e23" + "36883efa-28e4-4b83-a72e-05afa430f36a" ], "Cache-Control": [ "no-cache" @@ -8400,23 +9034,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14797" ], "x-ms-correlation-request-id": [ - "54673ab6-9b47-4142-9ae9-e6e535a2fbce" + "14d564fe-1196-4d50-ad0a-36473c685eda" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020316Z:54673ab6-9b47-4142-9ae9-e6e535a2fbce" + "WESTUS:20150604T200125Z:14d564fe-1196-4d50-ad0a-36473c685eda" ], "Date": [ - "Thu, 04 Jun 2015 02:03:15 GMT" + "Thu, 04 Jun 2015 20:01:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/a34dd573-768b-4ed8-8213-d16973c35ea5?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMzRkZDU3My03NjhiLTRlZDgtODIxMy1kMTY5NzNjMzVlYTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/operations/f0ff44f8-d588-4890-a85d-9dbd263f49d0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YwZmY0NGY4LWQ1ODgtNDg5MC1hODVkLTlkYmQyNjNmNDlkMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8424,10 +9058,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a34dd573-768b-4ed8-8213-d16973c35ea5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-03T19:01:10.583889-07:00\",\r\n \"endTime\": \"2015-06-03T19:03:22.3799438-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f0ff44f8-d588-4890-a85d-9dbd263f49d0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-04T12:59:18.2694971-07:00\",\r\n \"endTime\": \"2015-06-04T13:01:29.8640913-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8442,7 +9076,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "88bc86a0-20bc-4952-8617-969c989b619c" + "042301bb-f9bb-4ee4-8473-ba7675abdf1a" ], "Cache-Control": [ "no-cache" @@ -8452,23 +9086,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "14795" ], "x-ms-correlation-request-id": [ - "69defbac-48f0-40bf-87ff-b8bb90d9bf8b" + "947967ae-03ea-406a-8f6e-3fdd2d5e23ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020347Z:69defbac-48f0-40bf-87ff-b8bb90d9bf8b" + "WESTUS:20150604T200156Z:947967ae-03ea-406a-8f6e-3fdd2d5e23ee" ], "Date": [ - "Thu, 04 Jun 2015 02:03:46 GMT" + "Thu, 04 Jun 2015 20:01:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7743?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzc0Mz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg575?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTc1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -8491,16 +9125,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-request-id": [ - "d117f0c9-8005-4d2d-b989-961a3ad606c6" + "bd9cc891-4290-4ad8-a23e-13f59e036d78" ], "x-ms-correlation-request-id": [ - "d117f0c9-8005-4d2d-b989-961a3ad606c6" + "bd9cc891-4290-4ad8-a23e-13f59e036d78" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020350Z:d117f0c9-8005-4d2d-b989-961a3ad606c6" + "WESTUS:20150604T200159Z:bd9cc891-4290-4ad8-a23e-13f59e036d78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8509,17 +9143,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 02:03:49 GMT" + "Thu, 04 Jun 2015 20:01:59 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUzTlMxVFQxVlVTRVZCVTFSQlUwbEJJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdWaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8545,16 +9179,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "14781" ], "x-ms-request-id": [ - "fdd4c8f5-efbf-401b-939c-d764dadfe659" + "67ea65dc-1c07-4942-b325-eb48ccc36cd1" ], "x-ms-correlation-request-id": [ - "fdd4c8f5-efbf-401b-939c-d764dadfe659" + "67ea65dc-1c07-4942-b325-eb48ccc36cd1" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020350Z:fdd4c8f5-efbf-401b-939c-d764dadfe659" + "WESTUS:20150604T200200Z:67ea65dc-1c07-4942-b325-eb48ccc36cd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8563,17 +9197,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 02:03:50 GMT" + "Thu, 04 Jun 2015 20:02:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUzTlMxVFQxVlVTRVZCVTFSQlUwbEJJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdWaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8599,16 +9233,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14779" ], "x-ms-request-id": [ - "5f6d024f-5a43-4c23-8dd3-61369b76220e" + "f4e8f97f-1b30-4def-94d3-115cd48a4ed0" ], "x-ms-correlation-request-id": [ - "5f6d024f-5a43-4c23-8dd3-61369b76220e" + "f4e8f97f-1b30-4def-94d3-115cd48a4ed0" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020406Z:5f6d024f-5a43-4c23-8dd3-61369b76220e" + "WESTUS:20150604T200216Z:f4e8f97f-1b30-4def-94d3-115cd48a4ed0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8617,17 +9251,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 02:04:05 GMT" + "Thu, 04 Jun 2015 20:02:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUzTlMxVFQxVlVTRVZCVTFSQlUwbEJJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdWaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8653,16 +9287,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "14776" ], "x-ms-request-id": [ - "4305b46d-ffeb-456c-bdb4-75f37cf52778" + "6ac7f401-c956-43bf-839f-3ec9f3a57805" ], "x-ms-correlation-request-id": [ - "4305b46d-ffeb-456c-bdb4-75f37cf52778" + "6ac7f401-c956-43bf-839f-3ec9f3a57805" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020421Z:4305b46d-ffeb-456c-bdb4-75f37cf52778" + "WESTUS:20150604T200231Z:6ac7f401-c956-43bf-839f-3ec9f3a57805" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8671,17 +9305,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 02:04:21 GMT" + "Thu, 04 Jun 2015 20:02:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUzTlMxVFQxVlVTRVZCVTFSQlUwbEJJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdWaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8707,16 +9341,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14821" + "14771" ], "x-ms-request-id": [ - "97fefc08-6b74-4971-a3cb-6642f087e021" + "5b4d234c-e1dc-4b91-aa5a-cfb151473cd8" ], "x-ms-correlation-request-id": [ - "97fefc08-6b74-4971-a3cb-6642f087e021" + "5b4d234c-e1dc-4b91-aa5a-cfb151473cd8" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020436Z:97fefc08-6b74-4971-a3cb-6642f087e021" + "WESTUS:20150604T200247Z:5b4d234c-e1dc-4b91-aa5a-cfb151473cd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8725,17 +9359,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 02:04:36 GMT" + "Thu, 04 Jun 2015 20:02:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUzTlMxVFQxVlVTRVZCVTFSQlUwbEJJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdWaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8761,16 +9395,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14819" + "14769" ], "x-ms-request-id": [ - "e4ecd6bf-f185-4d89-903d-2d2800c00d76" + "781461eb-cfdd-42a6-b247-f43ee9febf71" ], "x-ms-correlation-request-id": [ - "e4ecd6bf-f185-4d89-903d-2d2800c00d76" + "781461eb-cfdd-42a6-b247-f43ee9febf71" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020452Z:e4ecd6bf-f185-4d89-903d-2d2800c00d76" + "WESTUS:20150604T200302Z:781461eb-cfdd-42a6-b247-f43ee9febf71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8779,17 +9413,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 02:04:52 GMT" + "Thu, 04 Jun 2015 20:03:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUzTlMxVFQxVlVTRVZCVTFSQlUwbEJJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdWaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8815,16 +9449,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14817" + "14767" ], "x-ms-request-id": [ - "fa65f6c5-a5cf-4a8a-b93e-2e136e3d01fb" + "be6c27be-1067-43ab-9d8a-8d77afe12ce6" ], "x-ms-correlation-request-id": [ - "fa65f6c5-a5cf-4a8a-b93e-2e136e3d01fb" + "be6c27be-1067-43ab-9d8a-8d77afe12ce6" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020507Z:fa65f6c5-a5cf-4a8a-b93e-2e136e3d01fb" + "WESTUS:20150604T200318Z:be6c27be-1067-43ab-9d8a-8d77afe12ce6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8833,17 +9467,17 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 02:05:07 GMT" + "Thu, 04 Jun 2015 20:03:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc3NDMtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMzTkRNdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU3NS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUzTlMxVFQxVlVTRVZCVTFSQlUwbEJJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdWaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8866,16 +9500,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "14766" ], "x-ms-request-id": [ - "604c5123-917d-46ad-a44b-ac3dcc76e5e7" + "ad6dc521-e294-4e4e-b30f-ea87ffecd0fd" ], "x-ms-correlation-request-id": [ - "604c5123-917d-46ad-a44b-ac3dcc76e5e7" + "ad6dc521-e294-4e4e-b30f-ea87ffecd0fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150604T020523Z:604c5123-917d-46ad-a44b-ac3dcc76e5e7" + "WESTUS:20150604T200333Z:ad6dc521-e294-4e4e-b30f-ea87ffecd0fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8884,7 +9518,7 @@ "no-cache" ], "Date": [ - "Thu, 04 Jun 2015 02:05:22 GMT" + "Thu, 04 Jun 2015 20:03:32 GMT" ] }, "StatusCode": 200 @@ -8892,10 +9526,10 @@ ], "Names": { "": [ - "pstestrg6035", - "pstestrg2529", - "pstestrg2816", - "pstestrg7743" + "pstestrg9340", + "pstestrg1016", + "pstestrg4940", + "pstestrg575" ] }, "Variables": {