diff --git a/src/ResourceManager/Compute/AzureRM.Compute.psd1 b/src/ResourceManager/Compute/AzureRM.Compute.psd1 index 9835aaa8ec1c..946498c2658d 100644 --- a/src/ResourceManager/Compute/AzureRM.Compute.psd1 +++ b/src/ResourceManager/Compute/AzureRM.Compute.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '1.2.2' +ModuleVersion = '1.2.3' # ID used to uniquely identify this module GUID = '0a83c907-1ffb-4d87-a492-c65ac7d7ed37' diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj index 269999c0cefc..eacd3be50f80 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj @@ -68,7 +68,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.Compute.11.1.0-prerelease\lib\net45\Microsoft.Azure.Management.Compute.dll + ..\..\..\packages\Microsoft.Azure.Management.Compute.11.1.1-prerelease\lib\net45\Microsoft.Azure.Management.Compute.dll True @@ -378,6 +378,9 @@ Always + + Always + Always diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs index 26971ce72a1c..77ce30232c0b 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs @@ -152,5 +152,11 @@ public void TestVirtualMachineWithEmptyAuc() ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineWithEmptyAuc"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachineWithBYOL() + { + ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineWithBYOL"); + } } } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 index c8b2311e75c7..c1f3527c0258 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 @@ -2091,3 +2091,129 @@ function Test-VirtualMachineWithEmptyAuc Clean-ResourceGroup $rgname } } + +<# +.SYNOPSIS +Test Virtual Machines +#> +function Test-VirtualMachineWithBYOL +{ + # Setup + $rgname = Get-ComputeTestResourceName + + try + { + # Common + $loc = "Southeast Asia"; + New-AzureRmResourceGroup -Name $rgname -Location $loc -Force; + + # VM Profile & Hardware + $vmsize = 'Standard_A4'; + $vmname = 'vm' + $rgname; + $p = New-AzureRmVMConfig -VMName $vmname -VMSize $vmsize; + Assert-AreEqual $p.HardwareProfile.VmSize $vmsize; + + # NRP + $subnet = New-AzureRmVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; + $vnet = New-AzureRmVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; + $vnet = Get-AzureRmVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; + $subnetId = $vnet.Subnets[0].Id; + $pubip = New-AzureRmPublicIpAddress -Force -Name ('pubip' + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -DomainNameLabel ('pubip' + $rgname); + $pubip = Get-AzureRmPublicIpAddress -Name ('pubip' + $rgname) -ResourceGroupName $rgname; + $pubipId = $pubip.Id; + $nic = New-AzureRmNetworkInterface -Force -Name ('nic' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId -PublicIpAddressId $pubip.Id; + $nic = Get-AzureRmNetworkInterface -Name ('nic' + $rgname) -ResourceGroupName $rgname; + $nicId = $nic.Id; + + $p = Add-AzureRmVMNetworkInterface -VM $p -Id $nicId; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[0].Id $nicId; + + # Adding the same Nic but not set it Primary + $p = Add-AzureRmVMNetworkInterface -VM $p -Id $nicId -Primary; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[0].Id $nicId; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[0].Primary $true; + + # Storage Account (SA) + $stoname = "mybyolosimage"; + $osDiskName = 'osDisk'; + $osDiskCaching = 'ReadWrite'; + $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; + $dataDiskVhdUri1 = "https://$stoname.blob.core.windows.net/test/data1.vhd"; + $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; + $userImageUrl = "https://mybyolosimage.blob.core.windows.net/vhdsrc2/win2012-tag0.vhd"; + + $p = Set-AzureRmVMOSDisk -VM $p -Windows -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -SourceImage $userImageUrl -CreateOption FromImage; + $p = Add-AzureRmVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + + Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; + Assert-AreEqual $p.StorageProfile.OSDisk.Name $osDiskName; + Assert-AreEqual $p.StorageProfile.OSDisk.Vhd.Uri $osDiskVhdUri; + Assert-AreEqual $p.StorageProfile.DataDisks.Count 1; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; + Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 1; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Vhd.Uri $dataDiskVhdUri1; + + # OS & Image + $user = "Foo12"; + $password = 'BaR@123' + $rgname; + $securePassword = ConvertTo-SecureString $password -AsPlainText -Force; + $cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); + $computerName = 'test'; + $vhdContainer = "https://$stoname.blob.core.windows.net/test"; + $licenseType = "Windows_Server"; + + $p = Set-AzureRmVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -ProvisionVMAgent -EnableAutoUpdate; + + Assert-AreEqual $p.OSProfile.AdminUsername $user; + Assert-AreEqual $p.OSProfile.ComputerName $computerName; + Assert-AreEqual $p.OSProfile.AdminPassword $password; + + # Virtual Machine + New-AzureRmVM -ResourceGroupName $rgname -Location $loc -LicenseType $licenseType -VM $p; + + # Get VM + $vm1 = Get-AzureRmVM -Name $vmname -ResourceGroupName $rgname; + + $output = $vm1 | Out-String; + Write-Verbose ('Output String : ' + $output); + Assert-AreEqual $vm1.Name $vmname; + Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces[0].Id $nicId; + + Assert-AreEqual $vm1.OSProfile.AdminUsername $user; + Assert-AreEqual $vm1.OSProfile.ComputerName $computerName; + Assert-AreEqual $vm1.HardwareProfile.VmSize $vmsize; + Assert-AreEqual $vm1.LicenseType $licenseType; + + Assert-AreEqual $true $vm1.DiagnosticsProfile.BootDiagnostics.Enabled; + + Get-AzureRmVM -ResourceGroupName $rgname -Name $vmname ` + | Add-AzureRmVMDataDisk -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri2 -CreateOption Empty ` + | Update-AzureRmVM; + + $vm2 = Get-AzureRmVM -Name $vmname -ResourceGroupName $rgname; + + Assert-AreEqual $vm2.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $vm2.NetworkProfile.NetworkInterfaces[0].Id $nicId; + Assert-AreEqual $vm2.StorageProfile.DataDisks.Count 2; + + Assert-AreEqual $vm2.OSProfile.AdminUsername $user; + Assert-AreEqual $vm2.OSProfile.ComputerName $computerName; + Assert-AreEqual $vm2.HardwareProfile.VmSize $vmsize; + Assert-AreEqual $vm2.LicenseType $licenseType; + Assert-NotNull $vm2.Location; + + # Remove All VMs + Get-AzureRmVM -ResourceGroupName $rgname | Remove-AzureRmVM -ResourceGroupName $rgname -Force; + $vms = Get-AzureRmVM -ResourceGroupName $rgname; + Assert-AreEqual $vms $null; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineWithBYOL.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineWithBYOL.json new file mode 100644 index 000000000000..b5b8c8d09f32 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineWithBYOL.json @@ -0,0 +1,4419 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7729?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-request-id": [ + "15e91a3b-2b9b-462c-af1d-a9576d7857ac" + ], + "x-ms-correlation-request-id": [ + "15e91a3b-2b9b-462c-af1d-a9576d7857ac" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035051Z:15e91a3b-2b9b-462c-af1d-a9576d7857ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 03:50:50 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7729?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "5bd1872f-fe50-4997-ae40-2c28033cca2a" + ], + "x-ms-correlation-request-id": [ + "5bd1872f-fe50-4997-ae40-2c28033cca2a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040846Z:5bd1872f-fe50-4997-ae40-2c28033cca2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 04:08:46 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7729?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Southeast Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729\",\r\n \"name\": \"crptestps7729\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "dec727f1-f0ca-4197-a241-f4063bafa66b" + ], + "x-ms-correlation-request-id": [ + "dec727f1-f0ca-4197-a241-f4063bafa66b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035054Z:dec727f1-f0ca-4197-a241-f4063bafa66b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 03:50:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "220a781e-7354-4863-b4d6-a288200d245e" + ], + "x-ms-correlation-request-id": [ + "220a781e-7354-4863-b4d6-a288200d245e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035054Z:220a781e-7354-4863-b4d6-a288200d245e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 03:50:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzcyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fce11c6e-7431-4a0f-b0b8-ba28882c7c96" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps7729' under resource group 'crptestps7729' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "cd4bb486-6b74-46c6-a7bc-dee0c4623459" + ], + "x-ms-correlation-request-id": [ + "cd4bb486-6b74-46c6-a7bc-dee0c4623459" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035056Z:cd4bb486-6b74-46c6-a7bc-dee0c4623459" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 03:50:56 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzcyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729\",\r\n \"etag\": \"W/\\\"813c1ca0-3e24-4a1e-864f-3d0cb73c4a7d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9c73aef9-cab8-4883-8cd7-3a41e94b6cfa\",\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\": \"subnetcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729/subnets/subnetcrptestps7729\",\r\n \"etag\": \"W/\\\"813c1ca0-3e24-4a1e-864f-3d0cb73c4a7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1083" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be65a613-db72-4015-af96-da2d39491fb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"813c1ca0-3e24-4a1e-864f-3d0cb73c4a7d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "01d6df7c-9419-44a5-923f-764772328224" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035113Z:01d6df7c-9419-44a5-923f-764772328224" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzcyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d4a4730-f0a3-4027-8cc2-ef1b632cbc10" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729\",\r\n \"etag\": \"W/\\\"813c1ca0-3e24-4a1e-864f-3d0cb73c4a7d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9c73aef9-cab8-4883-8cd7-3a41e94b6cfa\",\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\": \"subnetcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729/subnets/subnetcrptestps7729\",\r\n \"etag\": \"W/\\\"813c1ca0-3e24-4a1e-864f-3d0cb73c4a7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1083" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d8b9599d-479d-4852-be64-058a0da760a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"813c1ca0-3e24-4a1e-864f-3d0cb73c4a7d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "1e8a0935-fbb7-44dc-8ead-da07ac0a3cdf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035114Z:1e8a0935-fbb7-44dc-8ead-da07ac0a3cdf" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzcyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "651e4d9b-b88b-40b9-9bc4-16df57a994d5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729\",\r\n \"etag\": \"W/\\\"813c1ca0-3e24-4a1e-864f-3d0cb73c4a7d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9c73aef9-cab8-4883-8cd7-3a41e94b6cfa\",\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\": \"subnetcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729/subnets/subnetcrptestps7729\",\r\n \"etag\": \"W/\\\"813c1ca0-3e24-4a1e-864f-3d0cb73c4a7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1083" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a3417078-11cd-40be-94f0-d9cbe2e979b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"813c1ca0-3e24-4a1e-864f-3d0cb73c4a7d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "6df71c8b-11d6-4f6d-aa87-a734ea59d2a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035114Z:6df71c8b-11d6-4f6d-aa87-a734ea59d2a6" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzcyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Southeast Asia\",\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 \"name\": \"subnetcrptestps7729\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "430" + ], + "x-ms-client-request-id": [ + "7c0e4556-0556-4982-9bd5-c89223f9c804" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729\",\r\n \"etag\": \"W/\\\"35c69df3-12e6-4071-8b3e-4d1160c15e9c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9c73aef9-cab8-4883-8cd7-3a41e94b6cfa\",\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\": \"subnetcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729/subnets/subnetcrptestps7729\",\r\n \"etag\": \"W/\\\"35c69df3-12e6-4071-8b3e-4d1160c15e9c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "35883196-6b41-4015-b9b5-bc2a7dd49a0e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/35883196-6b41-4015-b9b5-bc2a7dd49a0e?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "65e7a169-32a1-4100-b36b-40b6661de5d4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035102Z:65e7a169-32a1-4100-b36b-40b6661de5d4" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:02 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/35883196-6b41-4015-b9b5-bc2a7dd49a0e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1ODgzMTk2LTZiNDEtNDAxNS1iOWI1LWJjMmE3ZGQ0OWEwZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4305addb-379e-4db5-a3b4-b781e110568e" + ], + "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": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "50304542-6493-4743-9a99-2611b36d30c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035113Z:50304542-6493-4743-9a99-2611b36d30c7" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzcyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31999aac-e629-46ef-9351-df3f7038dd13" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps7729' under resource group 'crptestps7729' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1eaf6178-e4bd-4016-b323-456e23093799" + ], + "x-ms-correlation-request-id": [ + "1eaf6178-e4bd-4016-b323-456e23093799" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035114Z:1eaf6178-e4bd-4016-b323-456e23093799" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:14 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzcyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729\",\r\n \"etag\": \"W/\\\"d7e429c4-5d20-472b-9033-a204c92317a4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"254224f3-e325-48f9-8cd9-a8be97421527\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7729\",\r\n \"fqdn\": \"pubipcrptestps7729.southeastasia.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "680" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "42fcb046-8fd7-4a97-9e83-85af7e2ac8c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d7e429c4-5d20-472b-9033-a204c92317a4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "97afbf69-3058-4ea2-9f4f-1d08fcdb5678" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035132Z:97afbf69-3058-4ea2-9f4f-1d08fcdb5678" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzcyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b34846d-d27f-4c9d-a37e-d6c2902886fe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729\",\r\n \"etag\": \"W/\\\"d7e429c4-5d20-472b-9033-a204c92317a4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"254224f3-e325-48f9-8cd9-a8be97421527\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7729\",\r\n \"fqdn\": \"pubipcrptestps7729.southeastasia.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "680" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8cfc7ed5-333b-4067-a495-ad604382010f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d7e429c4-5d20-472b-9033-a204c92317a4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "a6761a90-3ff9-41e7-a36f-a414a23f149d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035132Z:a6761a90-3ff9-41e7-a36f-a414a23f149d" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzcyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4be76d5-1105-421d-9b8c-93cf51cd2ef7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729\",\r\n \"etag\": \"W/\\\"d7e429c4-5d20-472b-9033-a204c92317a4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"254224f3-e325-48f9-8cd9-a8be97421527\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7729\",\r\n \"fqdn\": \"pubipcrptestps7729.southeastasia.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "680" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1fe3c659-e662-4d2b-b5ad-fc37fc90247d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d7e429c4-5d20-472b-9033-a204c92317a4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "4ba6d14e-082b-44ea-bb92-4032bf97f2ed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035133Z:4ba6d14e-082b-44ea-bb92-4032bf97f2ed" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzcyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7729\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "181" + ], + "x-ms-client-request-id": [ + "1230b2c3-9836-48f8-939e-ca7882ed700d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729\",\r\n \"etag\": \"W/\\\"91153f50-750d-42cb-aaa0-fcce78b822b0\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"254224f3-e325-48f9-8cd9-a8be97421527\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7729\",\r\n \"fqdn\": \"pubipcrptestps7729.southeastasia.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7cff60e5-b316-4d23-b3b3-d7a0413a8cca" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/7cff60e5-b316-4d23-b3b3-d7a0413a8cca?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d01c1b94-8788-49bc-839b-0cfcb10e41ed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035120Z:d01c1b94-8788-49bc-839b-0cfcb10e41ed" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:20 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/7cff60e5-b316-4d23-b3b3-d7a0413a8cca?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdjZmY2MGU1LWIzMTYtNGQyMy1iM2IzLWQ3YTA0MTNhOGNjYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "790dfba1-913f-46d8-8da8-c13bac5a60d4" + ], + "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": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "970c75bb-304e-449b-9d79-458f93e7f193" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035132Z:970c75bb-304e-449b-9d79-458f93e7f193" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7262625-d79e-4d67-b22b-10fa4e3605e1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps7729' under resource group 'crptestps7729' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "0cb9fb39-2dab-4c23-b844-a9bf4d2c5f20" + ], + "x-ms-correlation-request-id": [ + "0cb9fb39-2dab-4c23-b844-a9bf4d2c5f20" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035133Z:0cb9fb39-2dab-4c23-b844-a9bf4d2c5f20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:33 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1dcc287-1544-45c1-b824-32ffed4be8a5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"etag\": \"W/\\\"783a7fed-9c1a-4267-a200-1d8b37ab2175\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c7e16d0-808d-4de3-ac70-c6d28d4c9d88\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"783a7fed-9c1a-4267-a200-1d8b37ab2175\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729/subnets/subnetcrptestps7729\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "05340e49-a202-4de6-b092-a11d99162444" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"783a7fed-9c1a-4267-a200-1d8b37ab2175\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "3ab41c83-8f5e-4aea-a053-fa28796001a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035138Z:3ab41c83-8f5e-4aea-a053-fa28796001a8" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c93967a0-11a3-4d07-8eb0-77a7f9018794" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"etag\": \"W/\\\"783a7fed-9c1a-4267-a200-1d8b37ab2175\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c7e16d0-808d-4de3-ac70-c6d28d4c9d88\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"783a7fed-9c1a-4267-a200-1d8b37ab2175\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729/subnets/subnetcrptestps7729\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9f06f1ea-55c7-49a1-aed6-e7cff8771d54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"783a7fed-9c1a-4267-a200-1d8b37ab2175\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "f7c11740-0d12-44d7-bc5b-a8e4b58e98cd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035138Z:f7c11740-0d12-44d7-bc5b-a8e4b58e98cd" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729/subnets/subnetcrptestps7729\",\r\n \"properties\": {\r\n \"ipConfigurations\": []\r\n }\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729\"\r\n }\r\n }\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "907" + ], + "x-ms-client-request-id": [ + "882de5a1-e46f-4f93-a549-ee58dd779039" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps7729\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"etag\": \"W/\\\"783a7fed-9c1a-4267-a200-1d8b37ab2175\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c7e16d0-808d-4de3-ac70-c6d28d4c9d88\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"783a7fed-9c1a-4267-a200-1d8b37ab2175\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7729\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7729/subnets/subnetcrptestps7729\"\r\n },\r\n \"primary\": true\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c4d3d2dd-21ad-46b4-be63-9baa76c7f11f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c4d3d2dd-21ad-46b4-be63-9baa76c7f11f?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "367933f9-a11e-4c66-8a33-56a19b006582" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160210T035138Z:367933f9-a11e-4c66-8a33-56a19b006582" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44938748-2f24-4702-b0a5-977d21f808a7" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1013/providers/Microsoft.Storage/storageAccounts/25alkcwqxomumpg2ngz7q\",\r\n \"location\": \"westus\",\r\n \"name\": \"25alkcwqxomumpg2ngz7q\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T04:21:07.2740633Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://25alkcwqxomumpg2ngz7q.blob.core.windows.net/\",\r\n \"file\": \"https://25alkcwqxomumpg2ngz7q.file.core.windows.net/\",\r\n \"queue\": \"https://25alkcwqxomumpg2ngz7q.queue.core.windows.net/\",\r\n \"table\": \"https://25alkcwqxomumpg2ngz7q.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6810/providers/Microsoft.Storage/storageAccounts/bejoifxr7vcd7mif7vsnzg\",\r\n \"location\": \"westus\",\r\n \"name\": \"bejoifxr7vcd7mif7vsnzg\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-25T02:07:58.5240189Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://bejoifxr7vcd7mif7vsnzg.blob.core.windows.net/\",\r\n \"file\": \"https://bejoifxr7vcd7mif7vsnzg.file.core.windows.net/\",\r\n \"queue\": \"https://bejoifxr7vcd7mif7vsnzg.queue.core.windows.net/\",\r\n \"table\": \"https://bejoifxr7vcd7mif7vsnzg.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar5051/providers/Microsoft.Storage/storageAccounts/crptestar245\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crptestar245\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-30T04:15:31.0798702Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar245.blob.core.windows.net/\",\r\n \"file\": \"https://crptestar245.file.core.windows.net/\",\r\n \"queue\": \"https://crptestar245.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar245.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6046/providers/Microsoft.Storage/storageAccounts/crptestar3376\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crptestar3376\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-30T04:07:23.059133Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar3376.blob.core.windows.net/\",\r\n \"file\": \"https://crptestar3376.file.core.windows.net/\",\r\n \"queue\": \"https://crptestar3376.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar3376.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar7455/providers/Microsoft.Storage/storageAccounts/crptestar3423\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crptestar3423\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-02-05T22:02:29.0438259Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar3423.blob.core.windows.net/\",\r\n \"file\": \"https://crptestar3423.file.core.windows.net/\",\r\n \"queue\": \"https://crptestar3423.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar3423.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps260/providers/Microsoft.Storage/storageAccounts/crptestps260sto\",\r\n \"location\": \"westus\",\r\n \"name\": \"crptestps260sto\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-12-29T16:36:49.7383632Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestps260sto.blob.core.windows.net/\",\r\n \"file\": \"https://crptestps260sto.file.core.windows.net/\",\r\n \"queue\": \"https://crptestps260sto.queue.core.windows.net/\",\r\n \"table\": \"https://crptestps260sto.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"crptestps6849\": \"2015-12-29 16:37:15Z\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3541/providers/Microsoft.Storage/storageAccounts/crptestps3541sto\",\r\n \"location\": \"westus\",\r\n \"name\": \"crptestps3541sto\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-12-13T02:54:13.5222659Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestps3541sto.blob.core.windows.net/\",\r\n \"file\": \"https://crptestps3541sto.file.core.windows.net/\",\r\n \"queue\": \"https://crptestps3541sto.queue.core.windows.net/\",\r\n \"table\": \"https://crptestps3541sto.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"crptestps6965\": \"2015-12-13 02:54:38Z\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4125/providers/Microsoft.Storage/storageAccounts/crptestps4125sto\",\r\n \"location\": \"westus\",\r\n \"name\": \"crptestps4125sto\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-26T19:27:35.5407357Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestps4125sto.blob.core.windows.net/\",\r\n \"file\": \"https://crptestps4125sto.file.core.windows.net/\",\r\n \"queue\": \"https://crptestps4125sto.queue.core.windows.net/\",\r\n \"table\": \"https://crptestps4125sto.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"crptestps6219\": \"2016-01-26 19:28:02Z\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4749/providers/Microsoft.Storage/storageAccounts/crptestps4749sto\",\r\n \"location\": \"westus\",\r\n \"name\": \"crptestps4749sto\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-02-10T03:02:41.2530379Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestps4749sto.blob.core.windows.net/\",\r\n \"file\": \"https://crptestps4749sto.file.core.windows.net/\",\r\n \"queue\": \"https://crptestps4749sto.queue.core.windows.net/\",\r\n \"table\": \"https://crptestps4749sto.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"crptestps8366\": \"2016-02-10 03:03:07Z\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5934/providers/Microsoft.Storage/storageAccounts/crptestps5934sto\",\r\n \"location\": \"westus\",\r\n \"name\": \"crptestps5934sto\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-11-17T13:02:21.0037252Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestps5934sto.blob.core.windows.net/\",\r\n \"file\": \"https://crptestps5934sto.file.core.windows.net/\",\r\n \"queue\": \"https://crptestps5934sto.queue.core.windows.net/\",\r\n \"table\": \"https://crptestps5934sto.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"crptestps574\": \"2015-11-17 13:02:48Z\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7160/providers/Microsoft.Storage/storageAccounts/crptestps7160sto\",\r\n \"location\": \"westus\",\r\n \"name\": \"crptestps7160sto\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-02-05T20:00:10.6166626Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestps7160sto.blob.core.windows.net/\",\r\n \"file\": \"https://crptestps7160sto.file.core.windows.net/\",\r\n \"queue\": \"https://crptestps7160sto.queue.core.windows.net/\",\r\n \"table\": \"https://crptestps7160sto.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"crptestps450\": \"2016-02-05 20:00:37Z\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps717/providers/Microsoft.Storage/storageAccounts/crptestps717sto\",\r\n \"location\": \"westus\",\r\n \"name\": \"crptestps717sto\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-01-01T15:38:31.7735723Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestps717sto.blob.core.windows.net/\",\r\n \"file\": \"https://crptestps717sto.file.core.windows.net/\",\r\n \"queue\": \"https://crptestps717sto.queue.core.windows.net/\",\r\n \"table\": \"https://crptestps717sto.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"crptestps1002\": \"2016-01-01 15:38:58Z\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9398/providers/Microsoft.Storage/storageAccounts/crptestps9398sto\",\r\n \"location\": \"westus\",\r\n \"name\": \"crptestps9398sto\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-02-05T03:07:24.3580028Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestps9398sto.blob.core.windows.net/\",\r\n \"file\": \"https://crptestps9398sto.file.core.windows.net/\",\r\n \"queue\": \"https://crptestps9398sto.queue.core.windows.net/\",\r\n \"table\": \"https://crptestps9398sto.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"crptestps8430\": \"2016-02-05 03:07:49Z\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps947/providers/Microsoft.Storage/storageAccounts/crptestps947sto\",\r\n \"location\": \"westus\",\r\n \"name\": \"crptestps947sto\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-02-05T12:47:29.0329078Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestps947sto.blob.core.windows.net/\",\r\n \"file\": \"https://crptestps947sto.file.core.windows.net/\",\r\n \"queue\": \"https://crptestps947sto.queue.core.windows.net/\",\r\n \"table\": \"https://crptestps947sto.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {\r\n \"crptestps9737\": \"2016-02-05 12:47:55Z\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/byol/providers/Microsoft.Storage/storageAccounts/mybyolosimage\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mybyolosimage\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_RAGRS\",\r\n \"creationTime\": \"2016-01-29T23:31:43.8367081Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mybyolosimage.blob.core.windows.net/\",\r\n \"file\": \"https://mybyolosimage.file.core.windows.net/\",\r\n \"queue\": \"https://mybyolosimage.queue.core.windows.net/\",\r\n \"table\": \"https://mybyolosimage.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://mybyolosimage-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://mybyolosimage-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://mybyolosimage-secondary.table.core.windows.net/\"\r\n },\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5244/providers/Microsoft.Storage/storageAccounts/pqhu6xt4klz81dydf2dcd\",\r\n \"location\": \"westus\",\r\n \"name\": \"pqhu6xt4klz81dydf2dcd\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T02:03:42.5126658Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pqhu6xt4klz81dydf2dcd.blob.core.windows.net/\",\r\n \"file\": \"https://pqhu6xt4klz81dydf2dcd.file.core.windows.net/\",\r\n \"queue\": \"https://pqhu6xt4klz81dydf2dcd.queue.core.windows.net/\",\r\n \"table\": \"https://pqhu6xt4klz81dydf2dcd.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1013/providers/Microsoft.Storage/storageAccounts/stocrptestps1013\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps1013\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-09-24T04:20:07.8674758Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1013.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1372/providers/Microsoft.Storage/storageAccounts/stocrptestps1372\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps1372\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-12-18T22:31:07.1773707Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1372.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps1372.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1372.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1372.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2072/providers/Microsoft.Storage/storageAccounts/stocrptestps2072\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2072\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-12-12T02:19:55.6977949Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2072.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2072.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2072.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2072.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2639/providers/Microsoft.Storage/storageAccounts/stocrptestps2639\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps2639\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-09-24T03:52:37.4339159Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2639.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2639/providers/Microsoft.Storage/storageAccounts/stocrptestps2639add\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps2639add\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T03:53:04.5747379Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2639add.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2639add.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2639add.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2639add.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2854/providers/Microsoft.Storage/storageAccounts/stocrptestps2854\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps2854\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-09-24T03:49:39.4009944Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2854.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2854/providers/Microsoft.Storage/storageAccounts/stocrptestps2854add\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps2854add\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T03:50:06.4793732Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2854add.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps2854add.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2854add.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2854add.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4115/providers/Microsoft.Storage/storageAccounts/stocrptestps4115\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps4115\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T03:17:12.433774Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4115.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps4115.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps4115.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps4115.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4115/providers/Microsoft.Storage/storageAccounts/stocrptestps4115add\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps4115add\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T03:17:40.0745113Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4115add.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps4115add.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps4115add.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps4115add.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4861/providers/Microsoft.Storage/storageAccounts/stocrptestps4861\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps4861\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-12-19T04:15:24.7178196Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4861.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps4861.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps4861.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps4861.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5143/providers/Microsoft.Storage/storageAccounts/stocrptestps5143\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps5143\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T02:29:28.0404402Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5143.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps5143.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5143.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5143.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5244/providers/Microsoft.Storage/storageAccounts/stocrptestps5244\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps5244\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-09-24T02:03:04.0124174Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5244.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5428/providers/Microsoft.Storage/storageAccounts/stocrptestps5428\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps5428\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-12-18T03:07:33.6211225Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5428.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps5428.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5428.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5428.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps578/providers/Microsoft.Storage/storageAccounts/stocrptestps578\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps578\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-10-30T21:07:32.0380514Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps578.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps578.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps578.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps578.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5834/providers/Microsoft.Storage/storageAccounts/stocrptestps5834\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps5834\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-02-02T04:48:53.4602174Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5834.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps5834.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5834.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5834.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6084/providers/Microsoft.Storage/storageAccounts/stocrptestps6084\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6084\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-12-19T00:16:23.8130129Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6084.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps6084.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps6084.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps6084.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6270/providers/Microsoft.Storage/storageAccounts/stocrptestps6270\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6270\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-12-16T23:05:45.2211023Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6270.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps6270.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps6270.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps6270.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6435/providers/Microsoft.Storage/storageAccounts/stocrptestps6435\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps6435\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-02-02T18:41:18.9408678Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6435.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps6435.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps6435.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps6435.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6798/providers/Microsoft.Storage/storageAccounts/stocrptestps6798\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps6798\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-02-02T05:04:40.9352399Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6798.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps6798.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps6798.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps6798.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6810/providers/Microsoft.Storage/storageAccounts/stocrptestps6810\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps6810\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2015-09-25T01:18:35.9601114Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6810.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6846/providers/Microsoft.Storage/storageAccounts/stocrptestps6846\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps6846\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-12-16T18:28:28.1640428Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6846.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps6846.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps6846.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps6846.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7089/providers/Microsoft.Storage/storageAccounts/stocrptestps7089\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps7089\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-12-02T18:45:20.9742566Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps7089.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps7089.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps7089.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps7089.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7647/providers/Microsoft.Storage/storageAccounts/stocrptestps7647\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps7647\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T03:29:52.8761356Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps7647.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps7647.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps7647.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps7647.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7647/providers/Microsoft.Storage/storageAccounts/stocrptestps7647add\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps7647add\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T03:30:20.6106867Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps7647add.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps7647add.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps7647add.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps7647add.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8428/providers/Microsoft.Storage/storageAccounts/stocrptestps8428\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps8428\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T04:43:19.3686534Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8428.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps8428.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8428.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8428.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8976/providers/Microsoft.Storage/storageAccounts/stocrptestps8976\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps8976\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-02-03T04:15:00.2407604Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8976.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps8976.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8976.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8976.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9368/providers/Microsoft.Storage/storageAccounts/stocrptestps9368\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps9368\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T02:41:24.6231137Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9368.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps9368.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9368.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9368.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9414/providers/Microsoft.Storage/storageAccounts/stocrptestps9414\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps9414\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-12-16T07:37:01.8300242Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9414.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps9414.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9414.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9414.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9441/providers/Microsoft.Storage/storageAccounts/stocrptestps9441\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps9441\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T03:35:47.7064288Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9441.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps9441.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9441.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9441.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9441/providers/Microsoft.Storage/storageAccounts/stocrptestps9441add\",\r\n \"location\": \"westus\",\r\n \"name\": \"stocrptestps9441add\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-09-24T03:36:15.6909233Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9441add.blob.core.windows.net/\",\r\n \"file\": \"https://stocrptestps9441add.file.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9441add.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9441add.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg327/providers/Microsoft.Storage/storageAccounts/stopstestrg327\",\r\n \"location\": \"westus\",\r\n \"name\": \"stopstestrg327\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-04-18T17:45:38.9484234Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg327.blob.core.windows.net/\",\r\n \"file\": \"https://stopstestrg327.file.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg327.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg327.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg6302/providers/Microsoft.Storage/storageAccounts/stopstestrg6302\",\r\n \"location\": \"westus\",\r\n \"name\": \"stopstestrg6302\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-04-18T06:47:18.2286738Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg6302.blob.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6302.file.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6302.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6302.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "35166" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cedfcb6f-12ae-4e43-96b1-f317c509cfea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "cedfcb6f-12ae-4e43-96b1-f317c509cfea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035140Z:cedfcb6f-12ae-4e43-96b1-f317c509cfea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"image\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/vhdsrc2/win2012-tag0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps7729\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://mybyolosimage.blob.core.windows.net/\"\r\n }\r\n },\r\n \"licenseType\": \"Windows_Server\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1656" + ], + "x-ms-client-request-id": [ + "8207b84a-9f06-4d12-9e5b-78dd7711f9f0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3502d480-56a5-4090-b3bc-6e312a15ea2d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/vhdsrc2/win2012-tag0.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://mybyolosimage.blob.core.windows.net/\"\r\n }\r\n },\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729\",\r\n \"name\": \"vmcrptestps7729\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1855" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/fed378b7-08cb-4091-8e03-26f9eab106dc?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "fed378b7-08cb-4091-8e03-26f9eab106dc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "92a3ba55-02b9-4675-8095-018f8db0a5fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035145Z:92a3ba55-02b9-4675-8095-018f8db0a5fe" + ], + "Date": [ + "Wed, 10 Feb 2016 03:51:45 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"image\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/vhdsrc2/win2012-tag0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://mybyolosimage.blob.core.windows.net/\"\r\n }\r\n },\r\n \"licenseType\": \"Windows_Server\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1937" + ], + "x-ms-client-request-id": [ + "a88b9ac7-6cbb-4d5a-8a41-ebcbd50db09e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3502d480-56a5-4090-b3bc-6e312a15ea2d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/vhdsrc2/win2012-tag0.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://mybyolosimage.blob.core.windows.net/\"\r\n }\r\n },\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729\",\r\n \"name\": \"vmcrptestps7729\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/119c7733-d27f-42ce-ba84-6c1e29b8eed9?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "119c7733-d27f-42ce-ba84-6c1e29b8eed9" + ], + "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": [ + "c481451b-2305-438b-91da-4e6878cd8d81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040533Z:c481451b-2305-438b-91da-4e6878cd8d81" + ], + "Date": [ + "Wed, 10 Feb 2016 04:05:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/fed378b7-08cb-4091-8e03-26f9eab106dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZlZDM3OGI3LTA4Y2ItNDA5MS04ZTAzLTI2ZjllYWIxMDZkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fed378b7-08cb-4091-8e03-26f9eab106dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:51:44.5633321-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "720be01c-3698-4f83-bdd8-ed1d0856f342" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "adbea37f-2c77-43e6-a441-d2aee6b00419" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035216Z:adbea37f-2c77-43e6-a441-d2aee6b00419" + ], + "Date": [ + "Wed, 10 Feb 2016 03:52:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/fed378b7-08cb-4091-8e03-26f9eab106dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZlZDM3OGI3LTA4Y2ItNDA5MS04ZTAzLTI2ZjllYWIxMDZkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fed378b7-08cb-4091-8e03-26f9eab106dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:51:44.5633321-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "ba509c77-c99e-486c-b6ce-f183058d4df1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "64d41184-55c3-4f11-b2ff-fad6101a500e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035246Z:64d41184-55c3-4f11-b2ff-fad6101a500e" + ], + "Date": [ + "Wed, 10 Feb 2016 03:52:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/fed378b7-08cb-4091-8e03-26f9eab106dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZlZDM3OGI3LTA4Y2ItNDA5MS04ZTAzLTI2ZjllYWIxMDZkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fed378b7-08cb-4091-8e03-26f9eab106dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:51:44.5633321-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "88e24460-0866-486c-870b-3f40bacb5ad6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "90c2a399-5135-4e6c-8ef3-62ea0987a833" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035316Z:90c2a399-5135-4e6c-8ef3-62ea0987a833" + ], + "Date": [ + "Wed, 10 Feb 2016 03:53:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/fed378b7-08cb-4091-8e03-26f9eab106dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZlZDM3OGI3LTA4Y2ItNDA5MS04ZTAzLTI2ZjllYWIxMDZkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fed378b7-08cb-4091-8e03-26f9eab106dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:51:44.5633321-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "479361a7-2319-456d-a48d-2c0a0dbfff2d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "0a37ca5d-c073-4f5d-ac36-b35b36242dd8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035346Z:0a37ca5d-c073-4f5d-ac36-b35b36242dd8" + ], + "Date": [ + "Wed, 10 Feb 2016 03:53:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/fed378b7-08cb-4091-8e03-26f9eab106dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZlZDM3OGI3LTA4Y2ItNDA5MS04ZTAzLTI2ZjllYWIxMDZkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fed378b7-08cb-4091-8e03-26f9eab106dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:51:44.5633321-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "095f3b7f-54e6-4b05-afe4-5904db90acc8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "e4ca0ce5-2449-48fa-b3b9-b1c2d00b9451" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035417Z:e4ca0ce5-2449-48fa-b3b9-b1c2d00b9451" + ], + "Date": [ + "Wed, 10 Feb 2016 03:54:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/fed378b7-08cb-4091-8e03-26f9eab106dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZlZDM3OGI3LTA4Y2ItNDA5MS04ZTAzLTI2ZjllYWIxMDZkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fed378b7-08cb-4091-8e03-26f9eab106dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:51:44.5633321-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "94544948-fec3-4d87-89e6-77bcbb04dc2f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "c50dadad-6740-44f1-92f8-e546cdcb183f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035447Z:c50dadad-6740-44f1-92f8-e546cdcb183f" + ], + "Date": [ + "Wed, 10 Feb 2016 03:54:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/fed378b7-08cb-4091-8e03-26f9eab106dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZlZDM3OGI3LTA4Y2ItNDA5MS04ZTAzLTI2ZjllYWIxMDZkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fed378b7-08cb-4091-8e03-26f9eab106dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:51:44.5633321-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "11a75b67-9edb-44ea-93e2-73b1b9c53696" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "6c776525-bef3-4de7-9304-e820b513546a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035517Z:6c776525-bef3-4de7-9304-e820b513546a" + ], + "Date": [ + "Wed, 10 Feb 2016 03:55:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/fed378b7-08cb-4091-8e03-26f9eab106dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZlZDM3OGI3LTA4Y2ItNDA5MS04ZTAzLTI2ZjllYWIxMDZkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fed378b7-08cb-4091-8e03-26f9eab106dc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:51:44.5633321-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "a3f3a649-1b02-4af4-b14b-fd6a5d45655f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "2c706df3-384f-4f3a-b0de-bcdfc2d28694" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035547Z:2c706df3-384f-4f3a-b0de-bcdfc2d28694" + ], + "Date": [ + "Wed, 10 Feb 2016 03:55:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/fed378b7-08cb-4091-8e03-26f9eab106dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZlZDM3OGI3LTA4Y2ItNDA5MS04ZTAzLTI2ZjllYWIxMDZkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fed378b7-08cb-4091-8e03-26f9eab106dc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-09T19:51:44.5633321-08:00\",\r\n \"endTime\": \"2016-02-09T19:55:54.33697-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "6f221cbb-0d0f-4528-a8c6-4a4c2af132bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "2fcfe3b2-800e-4c48-a7a4-3d603efdbdf4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035618Z:2fcfe3b2-800e-4c48-a7a4-3d603efdbdf4" + ], + "Date": [ + "Wed, 10 Feb 2016 03:56:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3502d480-56a5-4090-b3bc-6e312a15ea2d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/vhdsrc2/win2012-tag0.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://mybyolosimage.blob.core.windows.net/\"\r\n }\r\n },\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729\",\r\n \"name\": \"vmcrptestps7729\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1856" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "bdf1cdba-bd81-4626-984d-a55c67da5be1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "3e3ebdb7-ae17-4458-82e6-f4dbd2cdd2c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035618Z:3e3ebdb7-ae17-4458-82e6-f4dbd2cdd2c1" + ], + "Date": [ + "Wed, 10 Feb 2016 03:56:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a46d50a-25d2-43ec-81f0-064a4df8a188" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3502d480-56a5-4090-b3bc-6e312a15ea2d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/vhdsrc2/win2012-tag0.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://mybyolosimage.blob.core.windows.net/\"\r\n }\r\n },\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729\",\r\n \"name\": \"vmcrptestps7729\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2417" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "e2e2b674-e299-4a0b-b7e8-d37dbd77112e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "43120177-4cc1-4160-8e8b-4a99dc0b5911" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040532Z:43120177-4cc1-4160-8e8b-4a99dc0b5911" + ], + "Date": [ + "Wed, 10 Feb 2016 04:05:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2751f9df-51ed-4ea8-acd3-ac6765a9e96d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3502d480-56a5-4090-b3bc-6e312a15ea2d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/vhdsrc2/win2012-tag0.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://mybyolosimage.blob.core.windows.net/\"\r\n }\r\n },\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729\",\r\n \"name\": \"vmcrptestps7729\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2417" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "83e91396-59f2-41c7-9062-b6ed139e43f4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "1d024f97-507f-45e6-ab69-fe7da8b31e4b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040532Z:1d024f97-507f-45e6-ab69-fe7da8b31e4b" + ], + "Date": [ + "Wed, 10 Feb 2016 04:05:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3502d480-56a5-4090-b3bc-6e312a15ea2d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/vhdsrc2/win2012-tag0.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://mybyolosimage.blob.core.windows.net/\"\r\n }\r\n },\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729\",\r\n \"name\": \"vmcrptestps7729\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "9a52703b-6108-4392-a92c-8e4480b3b297" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "3ff17e31-6275-47a5-8360-a5474a4936cb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040604Z:3ff17e31-6275-47a5-8360-a5474a4936cb" + ], + "Date": [ + "Wed, 10 Feb 2016 04:06:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "853cba3e-ad0d-4e9b-bff2-06877bee7923" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"3502d480-56a5-4090-b3bc-6e312a15ea2d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/vhdsrc2/win2012-tag0.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://mybyolosimage.blob.core.windows.net/\"\r\n }\r\n },\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729\",\r\n \"name\": \"vmcrptestps7729\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "f8e9d1fd-35af-4696-9baa-88db443bcf21" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "dc7e5a4c-d0b1-402c-9953-9a85d14bc239" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040605Z:dc7e5a4c-d0b1-402c-9953-9a85d14bc239" + ], + "Date": [ + "Wed, 10 Feb 2016 04:06:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a03537d3-290d-45eb-88e2-09da23db54e0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adra-match\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adra-match\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"caringo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/caringo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans2.Windows.App\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans2.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dolbydeveloper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dolbydeveloper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"g-data-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/g-data-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kollective\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kollective\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"luxoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luxoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mediazenie\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mediazenie\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"microsoft-r-products\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-r-products\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.PaaS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.PaaS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Preview\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Telemetry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test.0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test.1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test0\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.UtcTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.UtcTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Wmf4Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Wmf4Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Wmf5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Wmf5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"new-signature\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/new-signature\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rocket_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocket_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"servoy\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/servoy\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vecompsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vecompsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD-VMSS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD-VMSS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WADVMSS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WADVMSS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xrm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xrm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "79801" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "05607caa-ff5a-4dce-9534-26fc8b09b763" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "5ce3a3c6-6334-462d-9ed7-79038cee609b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035620Z:5ce3a3c6-6334-462d-9ed7-79038cee609b" + ], + "Date": [ + "Wed, 10 Feb 2016 03:56:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ffd4910-7cf9-4c7c-83fe-312d8d92917d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1089" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "27d01333-3cb4-4428-8153-496e423b9b4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "e8fc04b8-03c8-4379-939f-1832790d0bde" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035620Z:e8fc04b8-03c8-4379-939f-1832790d0bde" + ], + "Date": [ + "Wed, 10 Feb 2016 03:56:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc532e7e-e3da-417d-a265-d1bac9678029" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\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": [ + "dd5b35a2-92e6-4e30-b902-10bb30439d26" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "c95bd940-7895-474d-85dc-1fc528d8e41d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035620Z:c95bd940-7895-474d-85dc-1fc528d8e41d" + ], + "Date": [ + "Wed, 10 Feb 2016 03:56:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729/extensions/BGInfo?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc3MjkvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "194" + ], + "x-ms-client-request-id": [ + "c9695163-2a9d-4bd3-9e40-e7888b2e33ee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "482" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "13932cff-9399-4eb0-8836-fc8e3780f5df" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "1513cb77-b836-4c06-a2ff-6e2ee72e1443" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035626Z:1513cb77-b836-4c06-a2ff-6e2ee72e1443" + ], + "Date": [ + "Wed, 10 Feb 2016 03:56:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "eeb93e8a-4047-44cd-a847-474afc240b62" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "579547cd-4957-457d-adbc-3e60505a2950" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035656Z:579547cd-4957-457d-adbc-3e60505a2950" + ], + "Date": [ + "Wed, 10 Feb 2016 03:56:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "d4e3a0b2-b6f9-41bd-9ec4-82f9ddefbeb1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "2d375d69-802f-4970-98ca-9fdb219c29b6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035726Z:2d375d69-802f-4970-98ca-9fdb219c29b6" + ], + "Date": [ + "Wed, 10 Feb 2016 03:57:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "856086cc-3604-44b3-ad24-ca619980af3b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "e905dcca-94c2-4b8b-ac42-01fce0f119a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035757Z:e905dcca-94c2-4b8b-ac42-01fce0f119a8" + ], + "Date": [ + "Wed, 10 Feb 2016 03:57:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "b403f0d2-b66f-4ad6-a15c-76eba1158462" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "584b520d-5e46-438f-a614-751debfe1b2b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035827Z:584b520d-5e46-438f-a614-751debfe1b2b" + ], + "Date": [ + "Wed, 10 Feb 2016 03:58:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "6da41628-7160-4700-bd5e-4168c4d5a81f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "77534c7e-a2e1-4b64-a286-b8c24a75d3eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035857Z:77534c7e-a2e1-4b64-a286-b8c24a75d3eb" + ], + "Date": [ + "Wed, 10 Feb 2016 03:58:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "bb9b0d5f-9a9c-4b80-8d34-b5e9bd8c233b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "f8dd5cc7-848d-4ed1-8863-a09cde71e3c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035927Z:f8dd5cc7-848d-4ed1-8863-a09cde71e3c0" + ], + "Date": [ + "Wed, 10 Feb 2016 03:59:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "1dd2850e-68b2-4786-9254-9e0dcb56194d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "b50e4646-398d-4206-b553-d2ff6d55848c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T035958Z:b50e4646-398d-4206-b553-d2ff6d55848c" + ], + "Date": [ + "Wed, 10 Feb 2016 03:59:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "0702aa4a-1d33-4b55-a3c6-7579c3b8f45c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "2b434e75-ea70-416f-8e5f-e88aaf667d54" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040028Z:2b434e75-ea70-416f-8e5f-e88aaf667d54" + ], + "Date": [ + "Wed, 10 Feb 2016 04:00:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "8a135ff6-3103-4af5-b3df-c9bde62cc943" + ], + "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": [ + "87bc1f9d-a770-4223-b9d4-3ff3af1106be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040058Z:87bc1f9d-a770-4223-b9d4-3ff3af1106be" + ], + "Date": [ + "Wed, 10 Feb 2016 04:00:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "8ecff6bd-8c16-4c04-ab70-1621520fc3f5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "b4f9f91b-405a-4980-9bcd-1cac45331dbd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040128Z:b4f9f91b-405a-4980-9bcd-1cac45331dbd" + ], + "Date": [ + "Wed, 10 Feb 2016 04:01:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "c1c7f013-d1b6-4344-8feb-d5bcb346e68e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "d8a14ac6-457c-4362-a565-42fc4e527cf0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040159Z:d8a14ac6-457c-4362-a565-42fc4e527cf0" + ], + "Date": [ + "Wed, 10 Feb 2016 04:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "380c8bac-c18b-406a-afaf-1a4858626f53" + ], + "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": [ + "72341fdc-e65c-4a4c-aef8-61c2f46d206c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040229Z:72341fdc-e65c-4a4c-aef8-61c2f46d206c" + ], + "Date": [ + "Wed, 10 Feb 2016 04:02:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "4d27ab63-69b9-4f1b-92f9-b5e14389d103" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "c4ab8837-8591-481c-9770-db7ea15f8e78" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040259Z:c4ab8837-8591-481c-9770-db7ea15f8e78" + ], + "Date": [ + "Wed, 10 Feb 2016 04:02:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "17498e35-a953-4ab2-82e3-703807a9de05" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "c4393028-150f-4c58-b185-8d7ec5c51d00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040329Z:c4393028-150f-4c58-b185-8d7ec5c51d00" + ], + "Date": [ + "Wed, 10 Feb 2016 04:03:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "a4ef87b4-89e0-4818-ab2d-926b1be2c01d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "76afcdf4-eabd-4bb5-bc35-636d3c0d94a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040400Z:76afcdf4-eabd-4bb5-bc35-636d3c0d94a1" + ], + "Date": [ + "Wed, 10 Feb 2016 04:03:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "4b1fcf7a-4835-447f-acdd-5aa6115ab142" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "1d5bd652-c48e-4a9b-8d6f-2a8f1adfc259" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040430Z:1d5bd652-c48e-4a9b-8d6f-2a8f1adfc259" + ], + "Date": [ + "Wed, 10 Feb 2016 04:04:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "7632ad37-f67f-460e-9cdf-970c15c28753" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "19c3a55c-7f88-41c2-bbce-d8f17baef171" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040500Z:19c3a55c-7f88-41c2-bbce-d8f17baef171" + ], + "Date": [ + "Wed, 10 Feb 2016 04:05:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/13932cff-9399-4eb0-8836-fc8e3780f5df?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEzOTMyY2ZmLTkzOTktNGViMC04ODM2LWZjOGUzNzgwZjVkZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"13932cff-9399-4eb0-8836-fc8e3780f5df\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-09T19:56:25.556727-08:00\",\r\n \"endTime\": \"2016-02-09T20:05:25.4802513-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "aa2f6dea-deae-4c0a-b57c-93f28c34d6ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "1233582a-b21f-4dd3-9e21-3bd033291bfc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040530Z:1233582a-b21f-4dd3-9e21-3bd033291bfc" + ], + "Date": [ + "Wed, 10 Feb 2016 04:05:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729/extensions/BGInfo?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc3MjkvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729/extensions/BGInfo\",\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "2d673584-8f2d-4bb0-9ee3-9a715004ad1b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "af675069-e8c3-4001-a6bd-b3baafaf860e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040531Z:af675069-e8c3-4001-a6bd-b3baafaf860e" + ], + "Date": [ + "Wed, 10 Feb 2016 04:05:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/119c7733-d27f-42ce-ba84-6c1e29b8eed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzExOWM3NzMzLWQyN2YtNDJjZS1iYTg0LTZjMWUyOWI4ZWVkOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"119c7733-d27f-42ce-ba84-6c1e29b8eed9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-09T20:05:33.4180088-08:00\",\r\n \"endTime\": \"2016-02-09T20:05:56.918737-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "a7039961-b314-479a-8f9b-02c0528fafed" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "bada3056-feea-40be-a10c-a9851c1e11d5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040603Z:bada3056-feea-40be-a10c-a9851c1e11d5" + ], + "Date": [ + "Wed, 10 Feb 2016 04:06:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d745a0e8-cc2e-4d56-9fc6-c57cbedf16e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"3502d480-56a5-4090-b3bc-6e312a15ea2d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/vhdsrc2/win2012-tag0.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://mybyolosimage.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Network/networkInterfaces/niccrptestps7729\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://mybyolosimage.blob.core.windows.net/\"\r\n }\r\n },\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729/extensions/BGInfo\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729\",\r\n \"name\": \"vmcrptestps7729\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2689" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "330daebc-e49c-4ab6-b4ac-2ec76661bb78" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "054ebf2d-86c6-49f6-a368-6feeb0f120ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040609Z:054ebf2d-86c6-49f6-a368-6feeb0f120ed" + ], + "Date": [ + "Wed, 10 Feb 2016 04:06:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "660a374f-35e7-496a-8755-2b87fc96d313" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "cdbbce19-b137-46f4-8777-214203d17c66" + ], + "x-ms-correlation-request-id": [ + "cdbbce19-b137-46f4-8777-214203d17c66" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040845Z:cdbbce19-b137-46f4-8777-214203d17c66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 04:08:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7729/providers/Microsoft.Compute/virtualMachines/vmcrptestps7729?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc3MjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45cfab52-e1b2-432c-97ac-fb313dd895fa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/3da4d3a3-1e43-4923-9d1d-34434cb1e4fd?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "3da4d3a3-1e43-4923-9d1d-34434cb1e4fd" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/3da4d3a3-1e43-4923-9d1d-34434cb1e4fd?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "7a9e7a49-7c4a-4665-831f-d5959df42fb6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040614Z:7a9e7a49-7c4a-4665-831f-d5959df42fb6" + ], + "Date": [ + "Wed, 10 Feb 2016 04:06:13 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/3da4d3a3-1e43-4923-9d1d-34434cb1e4fd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkYTRkM2EzLTFlNDMtNDkyMy05ZDFkLTM0NDM0Y2IxZTRmZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3da4d3a3-1e43-4923-9d1d-34434cb1e4fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T20:06:14.2942768-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "58cf6c8c-8e07-4798-8b14-f6f5827e2da2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "9106b7e7-d13c-4fac-b420-77c177a94fc0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040644Z:9106b7e7-d13c-4fac-b420-77c177a94fc0" + ], + "Date": [ + "Wed, 10 Feb 2016 04:06:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/3da4d3a3-1e43-4923-9d1d-34434cb1e4fd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkYTRkM2EzLTFlNDMtNDkyMy05ZDFkLTM0NDM0Y2IxZTRmZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3da4d3a3-1e43-4923-9d1d-34434cb1e4fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T20:06:14.2942768-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "46f62bf5-e3f0-4f80-946f-400f24c4fd4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "4171c788-f25d-42f6-917b-5e497c9a05fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040714Z:4171c788-f25d-42f6-917b-5e497c9a05fc" + ], + "Date": [ + "Wed, 10 Feb 2016 04:07:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/3da4d3a3-1e43-4923-9d1d-34434cb1e4fd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkYTRkM2EzLTFlNDMtNDkyMy05ZDFkLTM0NDM0Y2IxZTRmZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3da4d3a3-1e43-4923-9d1d-34434cb1e4fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T20:06:14.2942768-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "2fc4a36d-dc04-4075-b443-5750ebf7f354" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "966e0c51-6f68-4ecd-9931-8c34b12d8285" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040744Z:966e0c51-6f68-4ecd-9931-8c34b12d8285" + ], + "Date": [ + "Wed, 10 Feb 2016 04:07:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/3da4d3a3-1e43-4923-9d1d-34434cb1e4fd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkYTRkM2EzLTFlNDMtNDkyMy05ZDFkLTM0NDM0Y2IxZTRmZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3da4d3a3-1e43-4923-9d1d-34434cb1e4fd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2016-02-09T20:06:14.2942768-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "a67a1230-8cfb-46a1-9fbd-e5b4641b7fda" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "935de50f-088b-498b-884b-35bdcd405028" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040815Z:935de50f-088b-498b-884b-35bdcd405028" + ], + "Date": [ + "Wed, 10 Feb 2016 04:08:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/3da4d3a3-1e43-4923-9d1d-34434cb1e4fd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkYTRkM2EzLTFlNDMtNDkyMy05ZDFkLTM0NDM0Y2IxZTRmZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3da4d3a3-1e43-4923-9d1d-34434cb1e4fd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-02-09T20:06:14.2942768-08:00\",\r\n \"endTime\": \"2016-02-09T20:08:27.2829185-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130995123334101268" + ], + "x-ms-request-id": [ + "cff37f01-e039-42dc-9d79-661fef93a755" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "b9d398b4-b500-45a2-bec7-f5ba786a67db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040845Z:b9d398b4-b500-45a2-bec7-f5ba786a67db" + ], + "Date": [ + "Wed, 10 Feb 2016 04:08:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7729?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc3Mjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "1573ceea-cf81-4fb9-a443-34d1ef4593da" + ], + "x-ms-correlation-request-id": [ + "1573ceea-cf81-4fb9-a443-34d1ef4593da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040850Z:1573ceea-cf81-4fb9-a443-34d1ef4593da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 04:08:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTnpJNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "98ce103b-c535-43c2-b93c-709d6c955d84" + ], + "x-ms-correlation-request-id": [ + "98ce103b-c535-43c2-b93c-709d6c955d84" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040851Z:98ce103b-c535-43c2-b93c-709d6c955d84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 04:08:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTnpJNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "3c245092-2e51-4144-9db7-59ab356824e5" + ], + "x-ms-correlation-request-id": [ + "3c245092-2e51-4144-9db7-59ab356824e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040907Z:3c245092-2e51-4144-9db7-59ab356824e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 04:09:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTnpJNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "2f493671-a724-4a44-8247-c2ead724f96f" + ], + "x-ms-correlation-request-id": [ + "2f493671-a724-4a44-8247-c2ead724f96f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040922Z:2f493671-a724-4a44-8247-c2ead724f96f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 04:09:21 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTnpJNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "6894a9a6-017c-4268-8ce3-36b1e857a87e" + ], + "x-ms-correlation-request-id": [ + "6894a9a6-017c-4268-8ce3-36b1e857a87e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040938Z:6894a9a6-017c-4268-8ce3-36b1e857a87e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 04:09:37 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTnpJNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "e9a0cb51-e5bc-4471-8873-c440a2757634" + ], + "x-ms-correlation-request-id": [ + "e9a0cb51-e5bc-4471-8873-c440a2757634" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T040953Z:e9a0cb51-e5bc-4471-8873-c440a2757634" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 04:09:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTnpJNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "94fd8516-bf4c-4b7e-be56-7d169c76db21" + ], + "x-ms-correlation-request-id": [ + "94fd8516-bf4c-4b7e-be56-7d169c76db21" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T041009Z:94fd8516-bf4c-4b7e-be56-7d169c76db21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 04:10:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTnpJNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "ce9c77a7-8109-4f72-b6d1-bce66c979f70" + ], + "x-ms-correlation-request-id": [ + "ce9c77a7-8109-4f72-b6d1-bce66c979f70" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T041024Z:ce9c77a7-8109-4f72-b6d1-bce66c979f70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 04:10:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NzI5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTnpJNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-request-id": [ + "9b372cda-5415-4199-a851-3837347c054f" + ], + "x-ms-correlation-request-id": [ + "9b372cda-5415-4199-a851-3837347c054f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160210T041039Z:9b372cda-5415-4199-a851-3837347c054f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Feb 2016 04:10:39 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachineWithBYOL": [ + "crptestps7729" + ] + }, + "Variables": { + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config index a569d8b8895a..074e077e8ece 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config +++ b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config @@ -7,7 +7,7 @@ - + diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index a7d9f0fcac83..b3b95b251d5d 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -82,7 +82,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.Compute.11.1.0-prerelease\lib\net45\Microsoft.Azure.Management.Compute.dll + ..\..\..\packages\Microsoft.Azure.Management.Compute.11.1.1-prerelease\lib\net45\Microsoft.Azure.Management.Compute.dll True diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/Scripts/AzureDiskEncryptionPreRequisiteSetup.ps1 b/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/Scripts/AzureDiskEncryptionPreRequisiteSetup.ps1 index 7e9d46e9e693..521a98ea035a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/Scripts/AzureDiskEncryptionPreRequisiteSetup.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/Scripts/AzureDiskEncryptionPreRequisiteSetup.ps1 @@ -82,6 +82,10 @@ Param( } else { + if(-not $aadClientSecret) + { + $aadClientSecret = Read-Host -Prompt "Aad application ($aadAppName) was alerady created, input corresponding aadClientSecret and hit ENTER. It can be retrieved from https://manage.windowsazure.com portal" ; + } if(-not $aadClientSecret) { Write-Error "Aad application ($aadAppName) was alerady created. Re-run the script by supplying aadClientSecret parameter with corresponding secret from https://manage.windowsazure.com portal"; diff --git a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.generated.ps1xml b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.generated.ps1xml index 684c288ceab3..d0951fae3b6f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.generated.ps1xml +++ b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.generated.ps1xml @@ -174,6 +174,10 @@ Location + + + LicenseType + TagsText diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs index e5be5900dc62..5e3f6e7d031a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs @@ -52,6 +52,9 @@ public string ResourceGroupName // Gets or sets the property of 'Location' public string Location { get; set; } + // Gets or sets the license type + public string LicenseType { get; set; } + // Gets or sets the property of 'Tags' public IDictionary Tags { get; set; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs index 906eba0828e6..de6d8a25c191 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")] -[assembly: AssemblyVersion("1.2.2")] -[assembly: AssemblyFileVersion("1.2.2")] +[assembly: AssemblyVersion("1.2.3")] +[assembly: AssemblyFileVersion("1.2.3")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Compute.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/NewAzureVMCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/NewAzureVMCommand.cs index cbdd8bec5902..3d09a10e7f8f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/NewAzureVMCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/NewAzureVMCommand.cs @@ -54,6 +54,10 @@ public class NewAzureVMCommand : VirtualMachineBaseCmdlet HelpMessage = "Disable BG Info Extension")] public SwitchParameter DisableBginfoExtension { get; set; } + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string LicenseType { get; set; } + public override void ExecuteCmdlet() { base.ExecuteCmdlet(); @@ -85,6 +89,7 @@ public override void ExecuteCmdlet() NetworkProfile = this.VM.NetworkProfile, OsProfile = this.VM.OSProfile, Plan = this.VM.Plan, + LicenseType = this.LicenseType, AvailabilitySet = this.VM.AvailabilitySetReference, Location = !string.IsNullOrEmpty(this.Location) ? this.Location : this.VM.Location, Tags = this.Tags != null ? this.Tags.ToDictionary() : this.VM.Tags diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/UpdateAzureVMCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/UpdateAzureVMCommand.cs index 91183ea87047..62e378e3e9d6 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/UpdateAzureVMCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/UpdateAzureVMCommand.cs @@ -50,6 +50,7 @@ public override void ExecuteCmdlet() Plan = this.VM.Plan, AvailabilitySet = this.VM.AvailabilitySetReference, Location = this.VM.Location, + LicenseType = this.VM.LicenseType, Tags = this.Tags != null ? this.Tags.ToDictionary() : this.VM.Tags }; diff --git a/src/ResourceManager/Compute/Commands.Compute/packages.config b/src/ResourceManager/Compute/Commands.Compute/packages.config index d973a89f295a..5314816bb7bb 100644 --- a/src/ResourceManager/Compute/Commands.Compute/packages.config +++ b/src/ResourceManager/Compute/Commands.Compute/packages.config @@ -9,7 +9,7 @@ - +