diff --git a/src/ResourceManager/Compute/ChangeLog.md b/src/ResourceManager/Compute/ChangeLog.md index 16459f04459a..7b42d5af9103 100644 --- a/src/ResourceManager/Compute/ChangeLog.md +++ b/src/ResourceManager/Compute/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Current Release +* Updated Set-AzureRmVMAEMExtension and Test-AzureRmVMAEMExtension cmdlets to support Premium managed disks * Backup encryption settings for IaaS VMs and restore on failure * ChefServiceInterval option is renamed to ChefDaemonInterval now. Old one will continue to work however. diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs index c70831956e50..633a4cad6716 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs @@ -76,5 +76,11 @@ public void TestAEMExtensionAdvancedWindowsMD() { ComputeTestController.NewInstance.RunPsTest("Test-AEMExtensionAdvancedWindowsMD"); } + + [Fact] + public void TestAEMExtensionAdvancedLinuxMD() + { + ComputeTestController.NewInstance.RunPsTest("Test-AEMExtensionAdvancedLinuxMD"); + } } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 index 4eb3cf6bd417..4eaf9a6da2dc 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 @@ -250,31 +250,31 @@ function Test-AEMExtensionAdvancedWindowsMD try { - Write-Verbose "Start the test Test-AEMExtensionAdvancedWindows" + Write-Verbose "Start the test Test-AEMExtensionAdvancedWindowsMD" # Setup $vm = Create-AdvancedVM -rgname $rgname -loc $loc -vmsize 'Standard_DS2' -stotype 'Premium_LRS' -nicCount 2 -useMD $vmname = $vm.Name - Write-Verbose "Test-AEMExtensionAdvancedWindows: VM created" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: VM created" # Get with not extension - Write-Verbose "Test-AEMExtensionAdvancedWindows: Get with no extension" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Get with no extension" $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname Assert-Null $extension # Test with not extension - Write-Verbose "Test-AEMExtensionAdvancedWindows: Test with no extension" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Test with no extension" $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck Assert-False { $res.Result } - Write-Verbose "Test-AEMExtensionAdvancedWindows: Test done" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Test done" $stoname = 'sto' + $rgname + "2"; New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type 'Standard_LRS'; # Set and Get command. - Write-Verbose "Test-AEMExtensionAdvancedWindows: Set with no extension" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Set with no extension" Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname -SkipStorage - Write-Verbose "Test-AEMExtensionAdvancedWindows: Set done" - Write-Verbose "Test-AEMExtensionAdvancedWindows: Get with extension" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Set done" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Get with extension" $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname @@ -284,24 +284,95 @@ function Test-AEMExtensionAdvancedWindowsMD Assert-AreEqual $extension.Name 'AzureCATExtensionHandler' $settings = $extension.PublicSettings | ConvertFrom-Json Assert-NotNull $settings.cfg - Write-Verbose "Test-AEMExtensionAdvancedWindows: Get done" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Get done" # Test command. - Write-Verbose "Test-AEMExtensionAdvancedWindows: Test with extension" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Test with extension" $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck Assert-True { $res.Result } Assert-True { ($res.PartialResults.Count -gt 0) } - Write-Verbose "Test-AEMExtensionAdvancedWindows: Test done" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Test done" # Remove command. - Write-Verbose "Test-AEMExtensionAdvancedWindows: Remove with extension" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Remove with extension" Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname - Write-Verbose "Test-AEMExtensionAdvancedWindows: Remove done" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Remove done" - Write-Verbose "Test-AEMExtensionAdvancedWindows: Get after remove" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Get after remove" $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname Assert-Null $extension - Write-Verbose "Test-AEMExtensionAdvancedWindows: Get after remove done" + Write-Verbose "Test-AEMExtensionAdvancedWindowsMD: Get after remove done" + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +function Test-AEMExtensionAdvancedLinuxMD +{ + $rgname = Get-ComputeTestResourceName + $loc = Get-ComputeVMLocation + + try + { + Write-Host "Start the test Test-AEMExtensionAdvancedLinuxMD" + # Setup + $vm = Create-AdvancedVM -rgname $rgname -loc $loc -vmsize 'Standard_DS2' -stotype 'Premium_LRS' -nicCount 2 -useMD -linux + $vmname = $vm.Name + $vm = Get-AzureRmVM -ResourceGroupName $rgname -Name $vmname + Add-AzureRmVMDataDisk -VM $vm -StorageAccountType StandardLRS -Lun (($vm.StorageProfile.DataDisks | select -ExpandProperty Lun | Measure-Object -Maximum).Maximum + 1) -CreateOption Empty -DiskSizeInGB 10 | Update-AzureRmVM + + + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: VM created" + + # Get with not extension + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Get with no extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + + # Test with not extension + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Test with no extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + Assert-False { $res.Result } + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Test done" + + $stoname = 'sto' + $rgname + "2"; + New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type 'Standard_LRS'; + + # Set and Get command. + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Set with no extension" + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname -SkipStorage + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Set done" + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Get with extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + + + Assert-NotNull $extension + Assert-AreEqual $extension.Publisher 'Microsoft.OSTCExtensions' + Assert-AreEqual $extension.ExtensionType 'AzureEnhancedMonitorForLinux' + Assert-AreEqual $extension.Name 'AzureEnhancedMonitorForLinux' + $settings = $extension.PublicSettings | ConvertFrom-Json + Assert-NotNull $settings.cfg + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Get done" + + # Test command. + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Test with extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + Assert-True { $res.Result } + Assert-True { ($res.PartialResults.Count -gt 0) } + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Test done" + + # Remove command. + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Remove with extension" + Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Remove done" + + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Get after remove" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension + Write-Verbose "Test-AEMExtensionAdvancedLinuxMD: Get after remove done" } finally { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinuxMD.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinuxMD.json new file mode 100644 index 000000000000..f890234984db --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinuxMD.json @@ -0,0 +1,5927 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorization\": {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12947" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "ba9c85e1-8c35-47b1-aec2-7323a10ac129" + ], + "x-ms-correlation-request-id": [ + "ba9c85e1-8c35-47b1-aec2-7323a10ac129" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092307Z:ba9c85e1-8c35-47b1-aec2-7323a10ac129" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:23:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourcegroups/crptestps8671?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671\",\r\n \"name\": \"crptestps8671\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "416a90d4-ffcc-487b-b026-83b4f11dc7c3" + ], + "x-ms-correlation-request-id": [ + "416a90d4-ffcc-487b-b026-83b4f11dc7c3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092309Z:416a90d4-ffcc-487b-b026-83b4f11dc7c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:23:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODY3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d53391f-645d-4259-82c6-21306a7d3d0b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps8671' under resource group 'crptestps8671' 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": [ + "17460f81-3d77-4427-b784-2f48feb114cf" + ], + "x-ms-correlation-request-id": [ + "17460f81-3d77-4427-b784-2f48feb114cf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092310Z:17460f81-3d77-4427-b784-2f48feb114cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:23:09 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODY3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671\",\r\n \"etag\": \"W/\\\"c922bfb7-7565-4e4f-82d6-e4ff34079d33\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b46ed4a8-a70a-4c82-b6e2-f1d50af6cb53\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\",\r\n \"etag\": \"W/\\\"c922bfb7-7565-4e4f-82d6-e4ff34079d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1029" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff21426a-d2c0-4d8a-9027-f30cc4123824" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c922bfb7-7565-4e4f-82d6-e4ff34079d33\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "1b7db279-6b2d-4623-aa2e-20324f28d932" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092343Z:1b7db279-6b2d-4623-aa2e-20324f28d932" + ], + "Date": [ + "Thu, 27 Apr 2017 09:23:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODY3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9ab30bc-cdc3-4ffc-9a7e-77c954d43e91" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671\",\r\n \"etag\": \"W/\\\"c922bfb7-7565-4e4f-82d6-e4ff34079d33\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b46ed4a8-a70a-4c82-b6e2-f1d50af6cb53\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\",\r\n \"etag\": \"W/\\\"c922bfb7-7565-4e4f-82d6-e4ff34079d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1029" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "42b1c145-f21c-443e-87a9-437f35c7491b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c922bfb7-7565-4e4f-82d6-e4ff34079d33\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "3f78225d-5654-4676-a5f3-36dce3c9d040" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092343Z:3f78225d-5654-4676-a5f3-36dce3c9d040" + ], + "Date": [ + "Thu, 27 Apr 2017 09:23:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODY3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6cec4768-f1ea-4d33-9e84-d4de72dcf028" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671\",\r\n \"etag\": \"W/\\\"c922bfb7-7565-4e4f-82d6-e4ff34079d33\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b46ed4a8-a70a-4c82-b6e2-f1d50af6cb53\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\",\r\n \"etag\": \"W/\\\"c922bfb7-7565-4e4f-82d6-e4ff34079d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1029" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "77fd05a5-241d-4cee-a589-479a7494d645" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c922bfb7-7565-4e4f-82d6-e4ff34079d33\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "1ea2314f-7a77-47b9-9e34-ceff4ec3e51f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092343Z:1ea2314f-7a77-47b9-9e34-ceff4ec3e51f" + ], + "Date": [ + "Thu, 27 Apr 2017 09:23:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODY3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"subnetcrptestps8671\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n },\r\n \"name\": \"vnetcrptestps8671\",\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "450" + ], + "x-ms-client-request-id": [ + "3aa7f1d3-ba76-425a-a4bd-de50cd523a49" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671\",\r\n \"etag\": \"W/\\\"c16d93ab-3e2c-4dd0-899e-5175b365f93c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b46ed4a8-a70a-4c82-b6e2-f1d50af6cb53\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\",\r\n \"etag\": \"W/\\\"c16d93ab-3e2c-4dd0-899e-5175b365f93c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1027" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "6183f1b1-4643-4171-9791-5ca5bcbe7a32" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/6183f1b1-4643-4171-9791-5ca5bcbe7a32?api-version=2017-03-01" + ], + "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": [ + "8f7c9955-3c9f-4c8a-a9f0-411585487b1b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092312Z:8f7c9955-3c9f-4c8a-a9f0-411585487b1b" + ], + "Date": [ + "Thu, 27 Apr 2017 09:23:12 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/6183f1b1-4643-4171-9791-5ca5bcbe7a32?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjE4M2YxYjEtNDY0My00MTcxLTk3OTEtNWNhNWJjYmU3YTMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "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": [ + "f52c1425-534c-4de7-b284-455e6b8f8155" + ], + "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": [ + "a26a5a43-5d24-4e5b-9cad-9ab2bd28e4a4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092343Z:a26a5a43-5d24-4e5b-9cad-9ab2bd28e4a4" + ], + "Date": [ + "Thu, 27 Apr 2017 09:23:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODY3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a3e444c-3248-4f4c-99c6-5724817b35af" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps8671' under resource group 'crptestps8671' 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": [ + "ff313814-3813-4b24-949b-9189d483418b" + ], + "x-ms-correlation-request-id": [ + "ff313814-3813-4b24-949b-9189d483418b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092343Z:ff313814-3813-4b24-949b-9189d483418b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:23:42 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODY3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671\",\r\n \"etag\": \"W/\\\"c2052bb9-fa06-47f1-be8a-2b9e2cd870b7\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0061b08-763e-4f5f-b2f3-aea965f38e93\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8671\",\r\n \"fqdn\": \"pubipcrptestps8671.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "705" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2bd675c4-611f-4221-b54f-83ebb1c8fae9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c2052bb9-fa06-47f1-be8a-2b9e2cd870b7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "30de526f-56d6-48ef-bf99-26433b12e087" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092416Z:30de526f-56d6-48ef-bf99-26433b12e087" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODY3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cff9dd7-fe56-430d-944f-eaeadba8a546" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671\",\r\n \"etag\": \"W/\\\"c2052bb9-fa06-47f1-be8a-2b9e2cd870b7\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0061b08-763e-4f5f-b2f3-aea965f38e93\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8671\",\r\n \"fqdn\": \"pubipcrptestps8671.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "705" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c968d2b7-5a74-43d8-a122-9f724f817cfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c2052bb9-fa06-47f1-be8a-2b9e2cd870b7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "f4f415b1-dcb4-4e17-bd33-6c881f2fd842" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092416Z:f4f415b1-dcb4-4e17-bd33-6c881f2fd842" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODY3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9dd8c40-85d7-4bc3-9133-b6876b57699d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671\",\r\n \"etag\": \"W/\\\"c2052bb9-fa06-47f1-be8a-2b9e2cd870b7\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0061b08-763e-4f5f-b2f3-aea965f38e93\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8671\",\r\n \"fqdn\": \"pubipcrptestps8671.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "705" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bccc864f-c97b-43fc-a13e-8348fb0da584" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c2052bb9-fa06-47f1-be8a-2b9e2cd870b7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "98dc71ce-075b-4ee2-afd4-ac0b4020c4a0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092416Z:98dc71ce-075b-4ee2-afd4-ac0b4020c4a0" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODY3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8671\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps8671\",\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "207" + ], + "x-ms-client-request-id": [ + "ca8476a0-ccc1-43b3-952a-098170ea2528" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671\",\r\n \"etag\": \"W/\\\"04cea01c-7beb-4be2-947f-7eb0b72187eb\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b0061b08-763e-4f5f-b2f3-aea965f38e93\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8671\",\r\n \"fqdn\": \"pubipcrptestps8671.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "704" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "5439527c-fa36-43e0-80f2-651db99a866e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/5439527c-fa36-43e0-80f2-651db99a866e?api-version=2017-03-01" + ], + "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": [ + "cfd54ccb-69ec-44f0-9cc4-adfaa93ac318" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092345Z:cfd54ccb-69ec-44f0-9cc4-adfaa93ac318" + ], + "Date": [ + "Thu, 27 Apr 2017 09:23:44 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/5439527c-fa36-43e0-80f2-651db99a866e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTQzOTUyN2MtZmEzNi00M2UwLTgwZjItNjUxZGI5OWE4NjZlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "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": [ + "0e65dddf-a84a-4723-8a2e-216b4387b292" + ], + "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": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "02c3d9fe-c356-464b-9159-92ef3ba80dba" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092416Z:02c3d9fe-c356-464b-9159-92ef3ba80dba" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b31660f1-1472-4ec3-9051-51da0cbb5b0c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps8671' under resource group 'crptestps8671' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6160a83d-aaab-4a00-a35e-99aa816ac3fd" + ], + "x-ms-correlation-request-id": [ + "6160a83d-aaab-4a00-a35e-99aa816ac3fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092416Z:6160a83d-aaab-4a00-a35e-99aa816ac3fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:16 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"etag\": \"W/\\\"e864985f-1924-43a0-9bef-fb7c6abd135e\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bfb59d4e-994c-4172-b4dd-55fcf53685e0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e864985f-1924-43a0-9bef-fb7c6abd135e\\\"\",\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/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vdkg3naku4beznxc4hkqv3wlkd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1727" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5cd3e115-d6de-4a68-9ae6-908d3e1660b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e864985f-1924-43a0-9bef-fb7c6abd135e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "c5adccaf-49ac-4d68-a77c-9e2284230f63" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092418Z:c5adccaf-49ac-4d68-a77c-9e2284230f63" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "923ff096-394b-4036-9879-a4051f4df53c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"etag\": \"W/\\\"e864985f-1924-43a0-9bef-fb7c6abd135e\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bfb59d4e-994c-4172-b4dd-55fcf53685e0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e864985f-1924-43a0-9bef-fb7c6abd135e\\\"\",\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/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vdkg3naku4beznxc4hkqv3wlkd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1727" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "72d37281-664e-48d2-bd88-b57b713477a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e864985f-1924-43a0-9bef-fb7c6abd135e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "7fdf46d8-4278-4ac1-b7b6-54cd3719c422" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092419Z:7fdf46d8-4278-4ac1-b7b6-54cd3719c422" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3991f505-c7ec-4525-9a22-38b4d6cc4e1b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"etag\": \"W/\\\"e864985f-1924-43a0-9bef-fb7c6abd135e\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bfb59d4e-994c-4172-b4dd-55fcf53685e0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e864985f-1924-43a0-9bef-fb7c6abd135e\\\"\",\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/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vdkg3naku4beznxc4hkqv3wlkd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1727" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7011f21a-9edb-41b7-b09b-7d064e69dd7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e864985f-1924-43a0-9bef-fb7c6abd135e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "62958749-256a-4d57-b6c0-af91c312855e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092419Z:62958749-256a-4d57-b6c0-af91c312855e" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671\"\r\n }\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"nic0crptestps8671\",\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1082" + ], + "x-ms-client-request-id": [ + "666aee23-1f6b-437f-9c64-35f52a775dfb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"etag\": \"W/\\\"e864985f-1924-43a0-9bef-fb7c6abd135e\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bfb59d4e-994c-4172-b4dd-55fcf53685e0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e864985f-1924-43a0-9bef-fb7c6abd135e\\\"\",\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/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8671\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vdkg3naku4beznxc4hkqv3wlkd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1727" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aa1e8474-f052-4925-9241-97eb58b9b479" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/aa1e8474-f052-4925-9241-97eb58b9b479?api-version=2017-03-01" + ], + "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": [ + "909397c7-240f-4094-b9af-37540d058ee6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092418Z:909397c7-240f-4094-b9af-37540d058ee6" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:18 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35de0b61-992d-4572-a055-ca149155748d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps8671' under resource group 'crptestps8671' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "988a9a6d-58bc-4751-9b2b-b65c052f78da" + ], + "x-ms-correlation-request-id": [ + "988a9a6d-58bc-4751-9b2b-b65c052f78da" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092419Z:988a9a6d-58bc-4751-9b2b-b65c052f78da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:19 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"etag\": \"W/\\\"c6767ff7-751e-4c4c-b447-1df64b2b06fb\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc05152e-2505-4b2e-b2c8-3af92fecb44c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c6767ff7-751e-4c4c-b447-1df64b2b06fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vdkg3naku4beznxc4hkqv3wlkd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6b60f6b0-e4f6-4974-acca-7cc24cf31db2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c6767ff7-751e-4c4c-b447-1df64b2b06fb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "0a217514-fb3f-48bc-936e-71ed5a0f6df6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092420Z:0a217514-fb3f-48bc-936e-71ed5a0f6df6" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96a073e5-eaef-4f77-9402-fc1b5b62a254" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"etag\": \"W/\\\"c6767ff7-751e-4c4c-b447-1df64b2b06fb\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc05152e-2505-4b2e-b2c8-3af92fecb44c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c6767ff7-751e-4c4c-b447-1df64b2b06fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vdkg3naku4beznxc4hkqv3wlkd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c8a32242-5335-493f-95ed-c7ebc756cbbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c6767ff7-751e-4c4c-b447-1df64b2b06fb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "e1b626ad-4680-4312-8d73-eb4b08f538fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092420Z:e1b626ad-4680-4312-8d73-eb4b08f538fd" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1c11a8c-2a59-46ab-82bf-3caa1d3a111c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"etag\": \"W/\\\"c6767ff7-751e-4c4c-b447-1df64b2b06fb\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc05152e-2505-4b2e-b2c8-3af92fecb44c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c6767ff7-751e-4c4c-b447-1df64b2b06fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vdkg3naku4beznxc4hkqv3wlkd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "65e24931-94fb-4ebc-a48d-295f20edc568" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c6767ff7-751e-4c4c-b447-1df64b2b06fb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "d97fd3b4-78d0-46eb-b622-e26def99a1e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092420Z:d97fd3b4-78d0-46eb-b622-e26def99a1e1" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"nic1crptestps8671\",\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "869" + ], + "x-ms-client-request-id": [ + "998085a2-d6f7-4410-83e9-dc6a298b4864" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps8671\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"etag\": \"W/\\\"c6767ff7-751e-4c4c-b447-1df64b2b06fb\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc05152e-2505-4b2e-b2c8-3af92fecb44c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c6767ff7-751e-4c4c-b447-1df64b2b06fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8671/subnets/subnetcrptestps8671\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vdkg3naku4beznxc4hkqv3wlkd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a83bbf68-d37a-4d1b-9620-75a08ba40b97" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/a83bbf68-d37a-4d1b-9620-75a08ba40b97?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "701d0d12-ea52-4682-bb71-3af1b52a33ee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092420Z:701d0d12-ea52-4682-bb71-3af1b52a33ee" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:20 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Storage/storageAccounts/stocrptestps8671?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "88" + ], + "x-ms-client-request-id": [ + "c2378c07-c59f-4fa9-b8e9-85e7b6eb20cf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "19cb9000-f882-489c-9e2c-e38909027095" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Storage/operations/27e8130a-1328-4afe-957e-f69e027da49b?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "19cb9000-f882-489c-9e2c-e38909027095" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092422Z:19cb9000-f882-489c-9e2c-e38909027095" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:22 GMT" + ], + "Connection": [ + "close" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Storage/operations/27e8130a-1328-4afe-957e-f69e027da49b?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzI3ZTgxMzBhLTEzMjgtNGFmZS05NTdlLWY2OWUwMjdkYTQ5Yj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "65" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e299ab1-3c5d-4565-84ac-e7babcc93958" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "9e299ab1-3c5d-4565-84ac-e7babcc93958" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092453Z:9e299ab1-3c5d-4565-84ac-e7babcc93958" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Storage/storageAccounts/stocrptestps8671?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4NjcxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05ef70ee-3b2b-4966-b641-0865cd33f90d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Storage/storageAccounts/stocrptestps8671\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps8671\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2017-04-27T09:24:22.6506981Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8671.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d409b2c7-7c86-4356-96f6-7bda3162a84f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "d409b2c7-7c86-4356-96f6-7bda3162a84f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092454Z:d409b2c7-7c86-4356-96f6-7bda3162a84f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Storage/storageAccounts/stocrptestps8671/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4NjcxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81ebf237-2e21-4341-8519-c96bcfc7b8df" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"5IjTrFiIIVCI2+0WGGCS2nYmw+QbD4yx7ARixk2cDhs/JXPBRvJW4jcUT20C8PaKMqknPtG966vX+LtcCBE5aQ==\",\r\n \"key2\": \"hSMR/pWsBeRs2nOO/XiAa0xMaGJOr7Hk/q2ewgIN+/8L2RSRePYN9AIrYXj5wjX2mS8GdC2gHyV1tOOllUkr0Q==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "29ce012f-9a82-4635-9a3c-41b2c4860e57" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "29ce012f-9a82-4635-9a3c-41b2c4860e57" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092454Z:29ce012f-9a82-4635-9a3c-41b2c4860e57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Thu, 27 Apr 2017 09:24:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\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 \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"PLACEHOLDER1@\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1663" + ], + "x-ms-client-request-id": [ + "0fe87e9f-bd4a-4511-ac49-f364572b7d0d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2147" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/f14e949f-d2e8-4608-aebd-1ca6f5104ed6?api-version=2016-04-30-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "f14e949f-d2e8-4608-aebd-1ca6f5104ed6" + ], + "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": [ + "a1580286-7294-43c7-8e04-d6c8d3923db1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092508Z:a1580286-7294-43c7-8e04-d6c8d3923db1" + ], + "Date": [ + "Thu, 27 Apr 2017 09:25:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"fromImage\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n }\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 11,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n }\r\n },\r\n {\r\n \"lun\": 3,\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2710" + ], + "x-ms-client-request-id": [ + "ad6c0cf8-b4d1-44ae-8ab6-57483835f7aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2863" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/c6b9c6be-ab7e-4c64-82ca-f34e881b8202?api-version=2016-04-30-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "c6b9c6be-ab7e-4c64-82ca-f34e881b8202" + ], + "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": [ + "4f12a0bb-4303-4c21-9dda-45576626d399" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092842Z:4f12a0bb-4303-4c21-9dda-45576626d399" + ], + "Date": [ + "Thu, 27 Apr 2017 09:28:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/f14e949f-d2e8-4608-aebd-1ca6f5104ed6?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjE0ZTk0OWYtZDJlOC00NjA4LWFlYmQtMWNhNmY1MTA0ZWQ2P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:24:58.6627108+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f14e949f-d2e8-4608-aebd-1ca6f5104ed6\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "1ba73f13-6145-4e9b-a128-e61bf7b90954" + ], + "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": [ + "910d6787-14b4-4f75-a0a6-07a74e5934bd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092538Z:910d6787-14b4-4f75-a0a6-07a74e5934bd" + ], + "Date": [ + "Thu, 27 Apr 2017 09:25:38 GMT" + ], + "Connection": [ + "close" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/f14e949f-d2e8-4608-aebd-1ca6f5104ed6?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjE0ZTk0OWYtZDJlOC00NjA4LWFlYmQtMWNhNmY1MTA0ZWQ2P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:24:58.6627108+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f14e949f-d2e8-4608-aebd-1ca6f5104ed6\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "8f9b32cc-85f2-4e56-93db-f2f09817aaf8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "dfc4979d-3e07-49b5-9435-ad255153ac4b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092608Z:dfc4979d-3e07-49b5-9435-ad255153ac4b" + ], + "Date": [ + "Thu, 27 Apr 2017 09:26:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/f14e949f-d2e8-4608-aebd-1ca6f5104ed6?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjE0ZTk0OWYtZDJlOC00NjA4LWFlYmQtMWNhNmY1MTA0ZWQ2P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:24:58.6627108+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f14e949f-d2e8-4608-aebd-1ca6f5104ed6\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "85fccee9-3994-4601-add2-ca0db3a139da" + ], + "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": [ + "6e7428cf-1d74-4af6-874f-d4c71515fdcc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092638Z:6e7428cf-1d74-4af6-874f-d4c71515fdcc" + ], + "Date": [ + "Thu, 27 Apr 2017 09:26:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/f14e949f-d2e8-4608-aebd-1ca6f5104ed6?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjE0ZTk0OWYtZDJlOC00NjA4LWFlYmQtMWNhNmY1MTA0ZWQ2P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:24:58.6627108+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f14e949f-d2e8-4608-aebd-1ca6f5104ed6\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "1eadc3d6-52c4-436f-975c-69611d498e95" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "44c719b4-2ba0-40c4-8d6d-992153b00316" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092708Z:44c719b4-2ba0-40c4-8d6d-992153b00316" + ], + "Date": [ + "Thu, 27 Apr 2017 09:27:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/f14e949f-d2e8-4608-aebd-1ca6f5104ed6?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjE0ZTk0OWYtZDJlOC00NjA4LWFlYmQtMWNhNmY1MTA0ZWQ2P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:24:58.6627108+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f14e949f-d2e8-4608-aebd-1ca6f5104ed6\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "1adc5b89-12a9-4aaa-9720-1aafc875263a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "785ff9e6-8c15-4b15-94f4-2e87b50338f3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092739Z:785ff9e6-8c15-4b15-94f4-2e87b50338f3" + ], + "Date": [ + "Thu, 27 Apr 2017 09:27:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/f14e949f-d2e8-4608-aebd-1ca6f5104ed6?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjE0ZTk0OWYtZDJlOC00NjA4LWFlYmQtMWNhNmY1MTA0ZWQ2P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:24:58.6627108+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f14e949f-d2e8-4608-aebd-1ca6f5104ed6\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "2f2cc2b9-6e9d-4b11-ab6a-437412400648" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "d4c007e3-ce46-44a4-898a-27aa39929d98" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092809Z:d4c007e3-ce46-44a4-898a-27aa39929d98" + ], + "Date": [ + "Thu, 27 Apr 2017 09:28:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/f14e949f-d2e8-4608-aebd-1ca6f5104ed6?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjE0ZTk0OWYtZDJlOC00NjA4LWFlYmQtMWNhNmY1MTA0ZWQ2P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:24:58.6627108+02:00\",\r\n \"endTime\": \"2017-04-27T11:28:24.4627519+02:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f14e949f-d2e8-4608-aebd-1ca6f5104ed6\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "7ac0f364-61fd-4a29-a05a-68f83bbe1645" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "f5266cb0-0315-4660-9861-28e1c727370a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092839Z:f5266cb0-0315-4660-9861-28e1c727370a" + ], + "Date": [ + "Thu, 27 Apr 2017 09:28:39 GMT" + ], + "Connection": [ + "close" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "061d2c93-f217-46e8-bb26-79d97661e581" + ], + "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": [ + "b7628857-f43c-4c77-aa57-a726d5c16d11" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092839Z:b7628857-f43c-4c77-aa57-a726d5c16d11" + ], + "Date": [ + "Thu, 27 Apr 2017 09:28:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a79076df-9df0-48f0-82a6-c9c1b7503c78" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "7c05b4ca-d3d8-4c6b-aad4-0cc200621914" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "1e868b8d-fea0-4837-bf4d-931288b33d19" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092839Z:1e868b8d-fea0-4837-bf4d-931288b33d19" + ], + "Date": [ + "Thu, 27 Apr 2017 09:28:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41856527-b2f9-4052-907c-a5df4b39f229" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "ea9cfff5-d4a5-483d-a001-674629f5e2c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "87518d1c-9dc5-4c17-9a25-44ceb03e31b1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092840Z:87518d1c-9dc5-4c17-9a25-44ceb03e31b1" + ], + "Date": [ + "Thu, 27 Apr 2017 09:28:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "f6306cd0-d9a3-4096-889a-0e9dd5aa9f97" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "38105863-ab0f-46f7-bc51-86dc3077a48c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092943Z:38105863-ab0f-46f7-bc51-86dc3077a48c" + ], + "Date": [ + "Thu, 27 Apr 2017 09:29:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbefe988-04df-4438-a548-d1df5e83df68" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "3976988b-aa3e-42fe-b3c6-8b03dc9d82ba" + ], + "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": [ + "c44ce808-3da2-4fc9-b21d-120d62a390ec" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092943Z:c44ce808-3da2-4fc9-b21d-120d62a390ec" + ], + "Date": [ + "Thu, 27 Apr 2017 09:29:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e6e6216-116b-4ea0-8ee0-6b801bf2fdf4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "3dbd81f5-5781-444d-8e28-e13a8a7e75c4" + ], + "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": [ + "07fa61da-226b-4850-b7f7-6d49f815963b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092943Z:07fa61da-226b-4850-b7f7-6d49f815963b" + ], + "Date": [ + "Thu, 27 Apr 2017 09:29:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42d5e908-19f0-4ce3-ae21-6a40d0819d60" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "2b6edbc2-480f-4544-8d5c-928b9462270f" + ], + "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": [ + "4456d09e-a3e1-4c4a-9f60-fc91383a6e1a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093016Z:4456d09e-a3e1-4c4a-9f60-fc91383a6e1a" + ], + "Date": [ + "Thu, 27 Apr 2017 09:30:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3044fd64-d381-47ab-92f9-284237dacedb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288894150702197\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4602" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "3bb3ec1c-0c79-4189-89e8-bf1d25fa1c9d" + ], + "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": [ + "3847c7d9-54c0-45f0-9082-1d3c1b841b69" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093120Z:3847c7d9-54c0-45f0-9082-1d3c1b841b69" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "feac6494-6440-4538-b85d-c82f52a19175" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288894150702197\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4602" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "12829ac9-7efa-4764-9a64-10e60c8bb1a1" + ], + "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": [ + "93b03778-dc9b-43a0-ae5b-7f79428ba20a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093120Z:93b03778-dc9b-43a0-ae5b-7f79428ba20a" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9972b53-ddc6-4167-835f-b7af511a930e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288894150702197\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4602" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "548c0dc0-d384-4d99-b48c-377bc2492f2f" + ], + "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": [ + "d5b27072-0478-4b4c-9e52-fa258b9a4f08" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093122Z:d5b27072-0478-4b4c-9e52-fa258b9a4f08" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4ef9108-3b24-4bf0-8fdf-12cb7ac36735" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "0f3bb315-803d-43e5-ac3d-9c2d5c176d58" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "9d95c3b6-303b-4baa-9f52-c083607ccd8b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093224Z:9d95c3b6-303b-4baa-9f52-c083607ccd8b" + ], + "Date": [ + "Thu, 27 Apr 2017 09:32:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/c6b9c6be-ab7e-4c64-82ca-f34e881b8202?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzZiOWM2YmUtYWI3ZS00YzY0LTgyY2EtZjM0ZTg4MWI4MjAyP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:28:42.486346+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c6b9c6be-ab7e-4c64-82ca-f34e881b8202\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "e75b7bb5-c14d-4076-96fd-f2847e9bf708" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "cb69737c-9bcf-4582-8d61-1d83ffe03933" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092912Z:cb69737c-9bcf-4582-8d61-1d83ffe03933" + ], + "Date": [ + "Thu, 27 Apr 2017 09:29:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/c6b9c6be-ab7e-4c64-82ca-f34e881b8202?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzZiOWM2YmUtYWI3ZS00YzY0LTgyY2EtZjM0ZTg4MWI4MjAyP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:28:42.486346+02:00\",\r\n \"endTime\": \"2017-04-27T11:29:23.8952419+02:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c6b9c6be-ab7e-4c64-82ca-f34e881b8202\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "6f60892f-8bb6-4edb-a1d3-89be2d5040ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "03ab570b-0ae3-4092-bbda-23cbd2787805" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092942Z:03ab570b-0ae3-4092-bbda-23cbd2787805" + ], + "Date": [ + "Thu, 27 Apr 2017 09:29:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?$expand=instanceView&api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a59846c-012c-4723-ae8d-63ae75325b0c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-04-27T11:29:39+02:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-27T11:29:23.8796254+02:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3916" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "7f6be54f-037d-4c7f-879d-64ae99c29e69" + ], + "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": [ + "25515659-561c-4170-9869-3ca96d700e21" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092943Z:25515659-561c-4170-9869-3ca96d700e21" + ], + "Date": [ + "Thu, 27 Apr 2017 09:29:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?$expand=instanceView&api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18b2a385-bd4e-4950-8fc5-f44d3eb81d82" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-04-27T11:30:04+02:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-27T11:29:23.8796254+02:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3916" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "45f04330-1e07-41e0-a3c6-05eb63faf5a2" + ], + "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": [ + "8543d62d-c263-498e-bc74-553178dfb16b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093016Z:8543d62d-c263-498e-bc74-553178dfb16b" + ], + "Date": [ + "Thu, 27 Apr 2017 09:30:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671?$expand=instanceView&api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzE/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b48a380c-f822-4d21-a484-616647c0b6cd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e93ef132-7389-4136-8f0c-319e77ea2b79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n },\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic0crptestps8671\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Network/networkInterfaces/nic1crptestps8671\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-04-27T11:31:03+02:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.1.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.1.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Azure Enhanced Monitor is enabled\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-27T11:31:06.424388+02:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288894150702197\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"name\": \"vmcrptestps8671\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "6254" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "8ee34ca1-5d0c-4e25-b40c-7a1a900aa96b" + ], + "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": [ + "ddeb3886-adcb-4a78-b6d0-8a83be635b73" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093120Z:ddeb3886-adcb-4a78-b6d0-8a83be635b73" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Storage/storageAccounts/stocrptestps86712?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4NjcxMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ], + "x-ms-client-request-id": [ + "fea4adbf-2287-4860-bcb7-2da37d696d88" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "0a3a32fe-55d4-472e-b72f-0f0e8e3d6141" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Storage/operations/2ca80a1b-7f72-4e2c-8d04-4f090f8a029e?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0a3a32fe-55d4-472e-b72f-0f0e8e3d6141" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T092945Z:0a3a32fe-55d4-472e-b72f-0f0e8e3d6141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Thu, 27 Apr 2017 09:29:44 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Storage/operations/2ca80a1b-7f72-4e2c-8d04-4f090f8a029e?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzJjYTgwYTFiLTdmNzItNGUyYy04ZDA0LTRmMDkwZjhhMDI5ZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "66" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "49edfda6-abd2-422c-960c-6178cd50c5b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "49edfda6-abd2-422c-960c-6178cd50c5b6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093016Z:49edfda6-abd2-422c-960c-6178cd50c5b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Thu, 27 Apr 2017 09:30:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL29zRGlzaz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bbe7fc0f-8cc8-44ba-a912-466d54c0c8a1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/latest\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2017-04-27T11:25:09.8394513+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\",\r\n \"name\": \"osDisk\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "908" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "1026ea7a-453a-439b-81db-93f407549575" + ], + "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": [ + "160b0d3a-7b32-4473-bbb1-a329bb1423a7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093016Z:160b0d3a-7b32-4473-bbb1-a329bb1423a7" + ], + "Date": [ + "Thu, 27 Apr 2017 09:30:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL29zRGlzaz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85d56ed5-f241-4909-b60c-daf42f4be849" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/latest\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2017-04-27T11:25:09.8394513+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/osDisk\",\r\n \"name\": \"osDisk\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "908" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "8a931708-23be-48ed-a87d-63c0c1c69b5b" + ], + "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": [ + "cdd05d90-b7c2-4286-80e5-a00c4d98e141" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093121Z:cdd05d90-b7c2-4286-80e5-a00c4d98e141" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cda11618-1c6e-46e9-b3de-d7eeaf71e6bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2017-04-27T11:25:09.8394513+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\",\r\n \"name\": \"testDataDisk1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "2a00cb1e-bea0-4b6f-880e-b316640cb9f8" + ], + "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": [ + "e056326c-084f-4e84-94cd-fdf03e886ed8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093016Z:e056326c-084f-4e84-94cd-fdf03e886ed8" + ], + "Date": [ + "Thu, 27 Apr 2017 09:30:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50fe1e63-fdf7-41ad-8d94-346a92e20b31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2017-04-27T11:25:09.8394513+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk1\",\r\n \"name\": \"testDataDisk1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "42b7d82e-0df6-4b31-84b5-da9404b603b4" + ], + "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": [ + "48c52852-4305-401b-91e1-9f7089a86ec5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093121Z:48c52852-4305-401b-91e1-9f7089a86ec5" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6bae1157-cc25-4f94-90f1-66bf13a741f5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 11,\r\n \"timeCreated\": \"2017-04-27T11:25:09.8394513+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\",\r\n \"name\": \"testDataDisk2\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "9b861235-7994-4efd-8136-a58ec4bb7f00" + ], + "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": [ + "fd791638-1bf0-4bec-9ba0-40c38444ce74" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093016Z:fd791638-1bf0-4bec-9ba0-40c38444ce74" + ], + "Date": [ + "Thu, 27 Apr 2017 09:30:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c8921b1-178d-4f3c-88b0-3d379489f66d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 11,\r\n \"timeCreated\": \"2017-04-27T11:25:09.8394513+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/testDataDisk2\",\r\n \"name\": \"testDataDisk2\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "2965b77a-c100-46e9-92cd-d8dd8d54fbe1" + ], + "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": [ + "36811fac-a8de-419e-95fa-9fc3f2ecc78e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093121Z:36811fac-a8de-419e-95fa-9fc3f2ecc78e" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3ZtY3JwdGVzdHBzODY3MV9kaXNrNF83MDg5MWI2MTZjYzE0YjcwYjc1YmQwN2NjNDRhNGE4Mz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d045a1c4-b4f1-47ea-8fba-0421d4140073" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2017-04-27T11:28:53.3656065+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "763" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "2c0750fd-e080-4fc7-91a2-be01d629d3e3" + ], + "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": [ + "6b8e5189-01a7-4a8a-9bc0-715c6cc9d149" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093016Z:6b8e5189-01a7-4a8a-9bc0-715c6cc9d149" + ], + "Date": [ + "Thu, 27 Apr 2017 09:30:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3ZtY3JwdGVzdHBzODY3MV9kaXNrNF83MDg5MWI2MTZjYzE0YjcwYjc1YmQwN2NjNDRhNGE4Mz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2397f50a-e423-44d3-adc8-a14b22169fef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2017-04-27T11:28:53.3656065+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/disks/vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\",\r\n \"name\": \"vmcrptestps8671_disk4_70891b616cc14b70b75bd07cc44a4a83\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "763" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "46e9db35-eb8c-4c6e-8941-90fc0bd1994c" + ], + "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": [ + "6e439bba-f1f4-4b66-8c0c-d136f136b02b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093122Z:6e439bba-f1f4-4b66-8c0c-d136f136b02b" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671/extensions/AzureEnhancedMonitorForLinux?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzEvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"forceUpdateTag\": \"636288894150702197\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": []\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1999" + ], + "x-ms-client-request-id": [ + "eb119b76-7eeb-4c4e-961e-1a2f3b289ea4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288894150702197\",\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/9215b02c-a45d-42a1-9f78-1c08a34eac52?api-version=2016-04-30-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "9215b02c-a45d-42a1-9f78-1c08a34eac52" + ], + "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": [ + "94b78371-fd07-4007-9ed2-ed03480fe494" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093019Z:94b78371-fd07-4007-9ed2-ed03480fe494" + ], + "Date": [ + "Thu, 27 Apr 2017 09:30:19 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/9215b02c-a45d-42a1-9f78-1c08a34eac52?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTIxNWIwMmMtYTQ1ZC00MmExLTlmNzgtMWMwOGEzNGVhYzUyP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:30:20.0135836+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9215b02c-a45d-42a1-9f78-1c08a34eac52\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "23c9d64a-ed31-4c8b-ada3-7b6cf87063ee" + ], + "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": [ + "45fa3589-11c7-42de-8145-30a89657ccd6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093049Z:45fa3589-11c7-42de-8145-30a89657ccd6" + ], + "Date": [ + "Thu, 27 Apr 2017 09:30:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/9215b02c-a45d-42a1-9f78-1c08a34eac52?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTIxNWIwMmMtYTQ1ZC00MmExLTlmNzgtMWMwOGEzNGVhYzUyP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:30:20.0135836+02:00\",\r\n \"endTime\": \"2017-04-27T11:31:06.424388+02:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9215b02c-a45d-42a1-9f78-1c08a34eac52\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "f31f7322-cf3c-4cc3-ab50-a395d5b05bdb" + ], + "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": [ + "eafb8240-a323-45d7-a7f5-ce6d4b830a26" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093120Z:eafb8240-a323-45d7-a7f5-ce6d4b830a26" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671/extensions/AzureEnhancedMonitorForLinux?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzEvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288894150702197\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1383" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "eb846128-fca0-4773-bf7e-7b5ef7a288bf" + ], + "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": [ + "c4e85faa-4030-47d1-9bf0-16684f15a05e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093120Z:c4e85faa-4030-47d1-9bf0-16684f15a05e" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671/extensions/AzureEnhancedMonitorForLinux?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzEvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06338c97-40e7-4dc1-89fe-cacdae71e82c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288894150702197\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1383" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "00980558-9ac1-439b-8d84-e0deac803337" + ], + "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": [ + "a3ad09f2-6ec0-4b8b-a03b-73b143fed2ba" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093120Z:a3ad09f2-6ec0-4b8b-a03b-73b143fed2ba" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps8671/providers/Microsoft.Compute/virtualMachines/vmcrptestps8671/extensions/AzureEnhancedMonitorForLinux?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2NzEvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c28624c-0c39-41fa-bb27-d6c66738250c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/99adcacc-761e-43a5-9dac-be8834ff6fab?api-version=2016-04-30-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "99adcacc-761e-43a5-9dac-be8834ff6fab" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/99adcacc-761e-43a5-9dac-be8834ff6fab?monitor=true&api-version=2016-04-30-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "15ba78b0-accd-4fe4-b89f-a231620524e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093123Z:15ba78b0-accd-4fe4-b89f-a231620524e1" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:22 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/99adcacc-761e-43a5-9dac-be8834ff6fab?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTlhZGNhY2MtNzYxZS00M2E1LTlkYWMtYmU4ODM0ZmY2ZmFiP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:31:24.4008506+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99adcacc-761e-43a5-9dac-be8834ff6fab\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "f52bcb81-b36f-460b-bf0a-521a08bf332c" + ], + "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": [ + "14ade8b0-6e2b-4514-af37-994d6ecf45f8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093153Z:14ade8b0-6e2b-4514-af37-994d6ecf45f8" + ], + "Date": [ + "Thu, 27 Apr 2017 09:31:52 GMT" + ], + "Connection": [ + "close" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/99adcacc-761e-43a5-9dac-be8834ff6fab?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTlhZGNhY2MtNzYxZS00M2E1LTlkYWMtYmU4ODM0ZmY2ZmFiP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:31:24.4008506+02:00\",\r\n \"endTime\": \"2017-04-27T11:32:02.7471463+02:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"99adcacc-761e-43a5-9dac-be8834ff6fab\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "adb6a03b-e224-4a66-982c-1f0cbf458c10" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "0b797c83-bc44-4c61-8927-7624d830ed31" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093223Z:0b797c83-bc44-4c61-8927-7624d830ed31" + ], + "Date": [ + "Thu, 27 Apr 2017 09:32:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourcegroups/crptestps8671?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg2NzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "e50ad6b4-0222-4525-b248-69e5f244ca09" + ], + "x-ms-correlation-request-id": [ + "e50ad6b4-0222-4525-b248-69e5f244ca09" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093226Z:e50ad6b4-0222-4525-b248-69e5f244ca09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:32:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "1d282ddb-e967-4f24-bc77-1519fab04b87" + ], + "x-ms-correlation-request-id": [ + "1d282ddb-e967-4f24-bc77-1519fab04b87" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093226Z:1d282ddb-e967-4f24-bc77-1519fab04b87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:32:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "c05a4968-aec0-4753-80d5-82968b438655" + ], + "x-ms-correlation-request-id": [ + "c05a4968-aec0-4753-80d5-82968b438655" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093241Z:c05a4968-aec0-4753-80d5-82968b438655" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:32:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "ca5582d7-cb45-4d21-981a-2a725367ab17" + ], + "x-ms-correlation-request-id": [ + "ca5582d7-cb45-4d21-981a-2a725367ab17" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093256Z:ca5582d7-cb45-4d21-981a-2a725367ab17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:32:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "96fa708c-fbf6-4516-aad3-db6519b88ae3" + ], + "x-ms-correlation-request-id": [ + "96fa708c-fbf6-4516-aad3-db6519b88ae3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093311Z:96fa708c-fbf6-4516-aad3-db6519b88ae3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:33:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "0f6251e0-0f72-42a2-beaa-58c295b424d7" + ], + "x-ms-correlation-request-id": [ + "0f6251e0-0f72-42a2-beaa-58c295b424d7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093327Z:0f6251e0-0f72-42a2-beaa-58c295b424d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:33:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "3b8e7e5d-92a3-4314-8536-9805f2ac57d7" + ], + "x-ms-correlation-request-id": [ + "3b8e7e5d-92a3-4314-8536-9805f2ac57d7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093342Z:3b8e7e5d-92a3-4314-8536-9805f2ac57d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:33:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "c2373599-904f-44c9-802d-27432c5d30e1" + ], + "x-ms-correlation-request-id": [ + "c2373599-904f-44c9-802d-27432c5d30e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093357Z:c2373599-904f-44c9-802d-27432c5d30e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:33:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "8ee294bb-e5da-4dbd-9fbc-beb3b70a0e3d" + ], + "x-ms-correlation-request-id": [ + "8ee294bb-e5da-4dbd-9fbc-beb3b70a0e3d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093412Z:8ee294bb-e5da-4dbd-9fbc-beb3b70a0e3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:34:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "d4141b5b-960d-4e03-8504-bf865157e702" + ], + "x-ms-correlation-request-id": [ + "d4141b5b-960d-4e03-8504-bf865157e702" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093428Z:d4141b5b-960d-4e03-8504-bf865157e702" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:34:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "8147a922-d540-418a-b8e3-3fc5a4f66ae4" + ], + "x-ms-correlation-request-id": [ + "8147a922-d540-418a-b8e3-3fc5a4f66ae4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093443Z:8147a922-d540-418a-b8e3-3fc5a4f66ae4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:34:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "5b44d4ed-8651-46c7-b8b1-983fe1d8ad2f" + ], + "x-ms-correlation-request-id": [ + "5b44d4ed-8651-46c7-b8b1-983fe1d8ad2f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093458Z:5b44d4ed-8651-46c7-b8b1-983fe1d8ad2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:34:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "003ade10-d815-4c58-9ad0-88b7ef85535f" + ], + "x-ms-correlation-request-id": [ + "003ade10-d815-4c58-9ad0-88b7ef85535f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093513Z:003ade10-d815-4c58-9ad0-88b7ef85535f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:35:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "2d309a89-0613-47d6-bec5-b606b42a4c81" + ], + "x-ms-correlation-request-id": [ + "2d309a89-0613-47d6-bec5-b606b42a4c81" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093529Z:2d309a89-0613-47d6-bec5-b606b42a4c81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:35:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "b0055b4b-fb14-4eaf-ae79-0f77231c5ce5" + ], + "x-ms-correlation-request-id": [ + "b0055b4b-fb14-4eaf-ae79-0f77231c5ce5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093544Z:b0055b4b-fb14-4eaf-ae79-0f77231c5ce5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:35:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "d4a0611e-cbef-4be4-a653-172bbab14833" + ], + "x-ms-correlation-request-id": [ + "d4a0611e-cbef-4be4-a653-172bbab14833" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093559Z:d4a0611e-cbef-4be4-a653-172bbab14833" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:35:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "fd399bba-740e-4330-ac67-6cb0e5bdd1f5" + ], + "x-ms-correlation-request-id": [ + "fd399bba-740e-4330-ac67-6cb0e5bdd1f5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093614Z:fd399bba-740e-4330-ac67-6cb0e5bdd1f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:36:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "37a40f70-ef89-4b58-a7ab-35f55452ba52" + ], + "x-ms-correlation-request-id": [ + "37a40f70-ef89-4b58-a7ab-35f55452ba52" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093629Z:37a40f70-ef89-4b58-a7ab-35f55452ba52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:36:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "875a16a7-d1ac-4059-a748-dcd2baeff4a6" + ], + "x-ms-correlation-request-id": [ + "875a16a7-d1ac-4059-a748-dcd2baeff4a6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093645Z:875a16a7-d1ac-4059-a748-dcd2baeff4a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:36:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "5d37bb61-c63b-49cf-a65e-1fd3c390c26d" + ], + "x-ms-correlation-request-id": [ + "5d37bb61-c63b-49cf-a65e-1fd3c390c26d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093700Z:5d37bb61-c63b-49cf-a65e-1fd3c390c26d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:37:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "841dfa5d-4d01-42dd-a34f-a48e72c6a1a1" + ], + "x-ms-correlation-request-id": [ + "841dfa5d-4d01-42dd-a34f-a48e72c6a1a1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093715Z:841dfa5d-4d01-42dd-a34f-a48e72c6a1a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:37:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "f3e130c4-4d2b-489d-ab6a-d823d3ac3cff" + ], + "x-ms-correlation-request-id": [ + "f3e130c4-4d2b-489d-ab6a-d823d3ac3cff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093730Z:f3e130c4-4d2b-489d-ab6a-d823d3ac3cff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:37:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "273ca801-6e70-416c-9b56-d04390042ee0" + ], + "x-ms-correlation-request-id": [ + "273ca801-6e70-416c-9b56-d04390042ee0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093746Z:273ca801-6e70-416c-9b56-d04390042ee0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:37:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "d8c0b6b2-cbf8-479d-a8ba-c932f3546214" + ], + "x-ms-correlation-request-id": [ + "d8c0b6b2-cbf8-479d-a8ba-c932f3546214" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093801Z:d8c0b6b2-cbf8-479d-a8ba-c932f3546214" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:38:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ + "7b5722b4-7830-47b3-9201-e3829bfc35ac" + ], + "x-ms-correlation-request-id": [ + "7b5722b4-7830-47b3-9201-e3829bfc35ac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093816Z:7b5722b4-7830-47b3-9201-e3829bfc35ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:38:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ + "7f9156de-c66b-4927-b8d8-f20bad912994" + ], + "x-ms-correlation-request-id": [ + "7f9156de-c66b-4927-b8d8-f20bad912994" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093831Z:7f9156de-c66b-4927-b8d8-f20bad912994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:38:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ + "218d6d1c-d763-48b5-ac90-d29bbd64e2a3" + ], + "x-ms-correlation-request-id": [ + "218d6d1c-d763-48b5-ac90-d29bbd64e2a3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093847Z:218d6d1c-d763-48b5-ac90-d29bbd64e2a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:38:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjcxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpjeExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "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": [ + "14973" + ], + "x-ms-request-id": [ + "70bd8bb4-6b7b-4701-8d7e-f9fc855259ce" + ], + "x-ms-correlation-request-id": [ + "70bd8bb4-6b7b-4701-8d7e-f9fc855259ce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T093902Z:70bd8bb4-6b7b-4701-8d7e-f9fc855259ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Apr 2017 09:39:01 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-AEMExtensionAdvancedLinuxMD": [ + "crptestps8671" + ] + }, + "Variables": { + "SubscriptionId": "7d42757b-9459-4cb8-9b0e-3f44f4373cf5" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindowsMD.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindowsMD.json index 1afa8496b0cc..216165675b14 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindowsMD.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedWindowsMD.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorization\": {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorization\": {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "11843" + "12947" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-request-id": [ - "9f65249a-d1c0-4b9a-89e6-6f00fd9595db" + "b8b5ac04-4409-4e16-af1e-60605a8015f2" ], "x-ms-correlation-request-id": [ - "9f65249a-d1c0-4b9a-89e6-6f00fd9595db" + "b8b5ac04-4409-4e16-af1e-60605a8015f2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221533Z:9f65249a-d1c0-4b9a-89e6-6f00fd9595db" + "WESTEUROPE:20170427T095652Z:b8b5ac04-4409-4e16-af1e-60605a8015f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:15:33 GMT" + "Thu, 27 Apr 2017 09:56:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourcegroups/crptestps2133?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourcegroups/crptestps1632?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -64,7 +64,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133\",\r\n \"name\": \"crptestps2133\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632\",\r\n \"name\": \"crptestps1632\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -79,16 +79,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "2d5aa745-fe40-4171-a4fe-46d6c2f2b6bc" + "3fe79a91-23a3-4e40-a29c-92b5d62a4c6e" ], "x-ms-correlation-request-id": [ - "2d5aa745-fe40-4171-a4fe-46d6c2f2b6bc" + "3fe79a91-23a3-4e40-a29c-92b5d62a4c6e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221535Z:2d5aa745-fe40-4171-a4fe-46d6c2f2b6bc" + "WESTEUROPE:20170427T095654Z:3fe79a91-23a3-4e40-a29c-92b5d62a4c6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -97,31 +97,31 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:15:34 GMT" + "Thu, 27 Apr 2017 09:56:53 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjEzMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTYzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95b06c59-8af0-46b1-8c04-761e8c61aee7" + "cdb2222a-2acf-4ff1-851c-4f31598cf7ca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps2133' under resource group 'crptestps2133' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps1632' under resource group 'crptestps1632' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -139,13 +139,13 @@ "gateway" ], "x-ms-request-id": [ - "96e15ca9-4b21-4e91-9593-41d5dccdd015" + "09807362-9123-46dd-a407-2f13814beed7" ], "x-ms-correlation-request-id": [ - "96e15ca9-4b21-4e91-9593-41d5dccdd015" + "09807362-9123-46dd-a407-2f13814beed7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221536Z:96e15ca9-4b21-4e91-9593-41d5dccdd015" + "WESTEUROPE:20170427T095654Z:09807362-9123-46dd-a407-2f13814beed7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -154,25 +154,25 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:15:36 GMT" + "Thu, 27 Apr 2017 09:56:54 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjEzMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTYzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133\",\r\n \"etag\": \"W/\\\"ba2cb14d-af02-4b1f-9ae0-ed6e37fe5e8a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"619803c6-690e-40ff-a56b-5795203e538a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\",\r\n \"etag\": \"W/\\\"ba2cb14d-af02-4b1f-9ae0-ed6e37fe5e8a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632\",\r\n \"etag\": \"W/\\\"acf49834-4adf-4ecf-b1f2-eeb82f35c25f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c1a49bb-763f-492e-8a20-2319ce945e15\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\",\r\n \"etag\": \"W/\\\"acf49834-4adf-4ecf-b1f2-eeb82f35c25f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1029" @@ -187,7 +187,7 @@ "no-cache" ], "x-ms-request-id": [ - "d9979a52-0e78-4a59-83e0-f4a4d3dd8235" + "68499200-71ad-428d-a432-c0942580829d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,47 +196,47 @@ "no-cache" ], "ETag": [ - "W/\"ba2cb14d-af02-4b1f-9ae0-ed6e37fe5e8a\"" + "W/\"acf49834-4adf-4ecf-b1f2-eeb82f35c25f\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14961" ], "x-ms-correlation-request-id": [ - "bb15291d-cd9f-4283-9abc-2df458b339c0" + "a13e83e1-3a51-4bad-9692-ea5cd318a988" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221610Z:bb15291d-cd9f-4283-9abc-2df458b339c0" + "WESTEUROPE:20170427T095728Z:a13e83e1-3a51-4bad-9692-ea5cd318a988" ], "Date": [ - "Wed, 08 Mar 2017 22:16:09 GMT" + "Thu, 27 Apr 2017 09:57:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjEzMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTYzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b7a2dca-a662-4cc8-9c08-a7b27332a8cf" + "de24ffd8-bf3b-4e71-bb4f-cb5ae6c27fdb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133\",\r\n \"etag\": \"W/\\\"ba2cb14d-af02-4b1f-9ae0-ed6e37fe5e8a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"619803c6-690e-40ff-a56b-5795203e538a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\",\r\n \"etag\": \"W/\\\"ba2cb14d-af02-4b1f-9ae0-ed6e37fe5e8a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632\",\r\n \"etag\": \"W/\\\"acf49834-4adf-4ecf-b1f2-eeb82f35c25f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c1a49bb-763f-492e-8a20-2319ce945e15\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\",\r\n \"etag\": \"W/\\\"acf49834-4adf-4ecf-b1f2-eeb82f35c25f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1029" @@ -251,7 +251,7 @@ "no-cache" ], "x-ms-request-id": [ - "24d45533-7d6e-4888-b129-e5ff51246f1f" + "def1eb53-2199-4144-8e02-10ad67aa36d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -260,47 +260,47 @@ "no-cache" ], "ETag": [ - "W/\"ba2cb14d-af02-4b1f-9ae0-ed6e37fe5e8a\"" + "W/\"acf49834-4adf-4ecf-b1f2-eeb82f35c25f\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14960" ], "x-ms-correlation-request-id": [ - "2f0ac8f9-2be7-4f78-a163-60160079632c" + "131a373f-9a9d-41a1-af97-13e457528e71" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221610Z:2f0ac8f9-2be7-4f78-a163-60160079632c" + "WESTEUROPE:20170427T095728Z:131a373f-9a9d-41a1-af97-13e457528e71" ], "Date": [ - "Wed, 08 Mar 2017 22:16:09 GMT" + "Thu, 27 Apr 2017 09:57:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjEzMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTYzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fc14d2a-a375-4822-8529-def87963bf51" + "1d1ddb3a-2748-477e-9ce2-54e055dcf9f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133\",\r\n \"etag\": \"W/\\\"ba2cb14d-af02-4b1f-9ae0-ed6e37fe5e8a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"619803c6-690e-40ff-a56b-5795203e538a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\",\r\n \"etag\": \"W/\\\"ba2cb14d-af02-4b1f-9ae0-ed6e37fe5e8a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632\",\r\n \"etag\": \"W/\\\"acf49834-4adf-4ecf-b1f2-eeb82f35c25f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c1a49bb-763f-492e-8a20-2319ce945e15\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\",\r\n \"etag\": \"W/\\\"acf49834-4adf-4ecf-b1f2-eeb82f35c25f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1029" @@ -315,7 +315,7 @@ "no-cache" ], "x-ms-request-id": [ - "44c50b36-2a9c-43f9-b118-3449e1008739" + "7cbeaf98-dda8-4fc3-8717-b30a33c15008" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -324,32 +324,32 @@ "no-cache" ], "ETag": [ - "W/\"ba2cb14d-af02-4b1f-9ae0-ed6e37fe5e8a\"" + "W/\"acf49834-4adf-4ecf-b1f2-eeb82f35c25f\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14959" ], "x-ms-correlation-request-id": [ - "80f43417-91a0-47df-98ad-7e3d328fa218" + "3af21bdf-1d98-4e0a-b788-bb6ed376c866" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221610Z:80f43417-91a0-47df-98ad-7e3d328fa218" + "WESTEUROPE:20170427T095728Z:3af21bdf-1d98-4e0a-b788-bb6ed376c866" ], "Date": [ - "Wed, 08 Mar 2017 22:16:09 GMT" + "Thu, 27 Apr 2017 09:57:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjEzMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTYzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"subnetcrptestps2133\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n },\r\n \"name\": \"vnetcrptestps2133\",\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"subnetcrptestps1632\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n },\r\n \"name\": \"vnetcrptestps1632\",\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -358,19 +358,19 @@ "450" ], "x-ms-client-request-id": [ - "9b17ba85-77b8-4f65-aafe-532d6eae2547" + "b2d342fa-4099-4195-bfb3-b834e705d531" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133\",\r\n \"etag\": \"W/\\\"78ab0adc-be30-4dbf-9ba9-3c110e92bcdf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"619803c6-690e-40ff-a56b-5795203e538a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\",\r\n \"etag\": \"W/\\\"78ab0adc-be30-4dbf-9ba9-3c110e92bcdf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632\",\r\n \"etag\": \"W/\\\"604038a4-e5c3-40d9-8055-753c8e30735d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c1a49bb-763f-492e-8a20-2319ce945e15\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\",\r\n \"etag\": \"W/\\\"604038a4-e5c3-40d9-8055-753c8e30735d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1027" @@ -388,10 +388,10 @@ "3" ], "x-ms-request-id": [ - "687c4c62-e927-4b65-9fae-675049e26ff2" + "69193570-d39e-46a7-b454-f362ebea72c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Network/locations/eastus/operations/687c4c62-e927-4b65-9fae-675049e26ff2?api-version=2017-03-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/69193570-d39e-46a7-b454-f362ebea72c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,31 +404,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "9f27edda-1d28-4bbe-bd6a-36bb91f15a5b" + "be9f5c7a-0242-45cf-a466-e04b6312ffcd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221539Z:9f27edda-1d28-4bbe-bd6a-36bb91f15a5b" + "WESTEUROPE:20170427T095657Z:be9f5c7a-0242-45cf-a466-e04b6312ffcd" ], "Date": [ - "Wed, 08 Mar 2017 22:15:38 GMT" + "Thu, 27 Apr 2017 09:56:56 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Network/locations/eastus/operations/687c4c62-e927-4b65-9fae-675049e26ff2?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjg3YzRjNjItZTkyNy00YjY1LTlmYWUtNjc1MDQ5ZTI2ZmYyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/69193570-d39e-46a7-b454-f362ebea72c2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjkxOTM1NzAtZDM5ZS00NmE3LWI0NTQtZjM2MmViZWE3MmMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -446,7 +446,7 @@ "no-cache" ], "x-ms-request-id": [ - "0b19c142-fb54-4670-8ed6-380fc93f5982" + "ca87cab9-d59a-41dd-b873-771809982e01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -459,40 +459,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14962" ], "x-ms-correlation-request-id": [ - "daa03135-019d-4f0e-800f-edc45efc0397" + "c75fb96f-03de-4ade-b543-eaa7063ae0d3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221609Z:daa03135-019d-4f0e-800f-edc45efc0397" + "WESTEUROPE:20170427T095727Z:c75fb96f-03de-4ade-b543-eaa7063ae0d3" ], "Date": [ - "Wed, 08 Mar 2017 22:16:09 GMT" + "Thu, 27 Apr 2017 09:57:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjEzMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTYzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c6bb8de-d498-4808-8fec-11ec81538057" + "64176b58-2f4b-4b7a-a94e-9a99c253f6ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps2133' under resource group 'crptestps2133' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps1632' under resource group 'crptestps1632' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -510,13 +510,13 @@ "gateway" ], "x-ms-request-id": [ - "116739f2-9f73-40a6-a6eb-bda71bc041ee" + "ce44a72e-7112-47c3-8358-c564851c3fc2" ], "x-ms-correlation-request-id": [ - "116739f2-9f73-40a6-a6eb-bda71bc041ee" + "ce44a72e-7112-47c3-8358-c564851c3fc2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221610Z:116739f2-9f73-40a6-a6eb-bda71bc041ee" + "WESTEUROPE:20170427T095728Z:ce44a72e-7112-47c3-8358-c564851c3fc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -525,25 +525,25 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:16:10 GMT" + "Thu, 27 Apr 2017 09:57:28 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjEzMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTYzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133\",\r\n \"etag\": \"W/\\\"3d257035-61e2-4a9f-aff5-434762e510ec\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"184a8c4e-5a7e-43e7-89c1-984169318395\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2133\",\r\n \"fqdn\": \"pubipcrptestps2133.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632\",\r\n \"etag\": \"W/\\\"9f8ce2c2-08ac-44e9-8742-c0d2dbe5dd1c\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3e5fdb45-08e9-4f0a-b0fb-2eca3d51975b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1632\",\r\n \"fqdn\": \"pubipcrptestps1632.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "705" @@ -558,7 +558,7 @@ "no-cache" ], "x-ms-request-id": [ - "b6675148-22bd-40a6-a62d-ca43dde0b79a" + "dd635926-2c73-49ec-b2c7-4c97d5745f6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,47 +567,47 @@ "no-cache" ], "ETag": [ - "W/\"3d257035-61e2-4a9f-aff5-434762e510ec\"" + "W/\"9f8ce2c2-08ac-44e9-8742-c0d2dbe5dd1c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14956" ], "x-ms-correlation-request-id": [ - "46b4fad2-334a-40a0-90ca-04fa53662d79" + "8f8006e9-7ab0-4b67-aa97-6f2c091fea1a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221643Z:46b4fad2-334a-40a0-90ca-04fa53662d79" + "WESTEUROPE:20170427T095800Z:8f8006e9-7ab0-4b67-aa97-6f2c091fea1a" ], "Date": [ - "Wed, 08 Mar 2017 22:16:43 GMT" + "Thu, 27 Apr 2017 09:58:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjEzMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTYzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfe35998-1eaf-4bdb-859e-e7720caddbf3" + "d4147cb2-41ef-4902-99e7-7afb7ba3d15e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133\",\r\n \"etag\": \"W/\\\"3d257035-61e2-4a9f-aff5-434762e510ec\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"184a8c4e-5a7e-43e7-89c1-984169318395\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2133\",\r\n \"fqdn\": \"pubipcrptestps2133.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632\",\r\n \"etag\": \"W/\\\"9f8ce2c2-08ac-44e9-8742-c0d2dbe5dd1c\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3e5fdb45-08e9-4f0a-b0fb-2eca3d51975b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1632\",\r\n \"fqdn\": \"pubipcrptestps1632.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "705" @@ -622,7 +622,7 @@ "no-cache" ], "x-ms-request-id": [ - "6bfe94de-b9e6-4b41-aed1-82fc91ab44f2" + "cbc70a7f-5cba-4a70-b8c5-92e6060b1fa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -631,47 +631,47 @@ "no-cache" ], "ETag": [ - "W/\"3d257035-61e2-4a9f-aff5-434762e510ec\"" + "W/\"9f8ce2c2-08ac-44e9-8742-c0d2dbe5dd1c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14955" ], "x-ms-correlation-request-id": [ - "c1d3880c-7f33-43ad-b7aa-203301704d41" + "4e02d21b-35f2-4db6-8549-75b0ad8a78b1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221644Z:c1d3880c-7f33-43ad-b7aa-203301704d41" + "WESTEUROPE:20170427T095800Z:4e02d21b-35f2-4db6-8549-75b0ad8a78b1" ], "Date": [ - "Wed, 08 Mar 2017 22:16:43 GMT" + "Thu, 27 Apr 2017 09:58:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjEzMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTYzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "575a5433-f608-4b33-a24c-e55cd727ed62" + "0ba39125-38dd-47ed-a82c-81415d6bb4aa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133\",\r\n \"etag\": \"W/\\\"3d257035-61e2-4a9f-aff5-434762e510ec\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"184a8c4e-5a7e-43e7-89c1-984169318395\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2133\",\r\n \"fqdn\": \"pubipcrptestps2133.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632\",\r\n \"etag\": \"W/\\\"9f8ce2c2-08ac-44e9-8742-c0d2dbe5dd1c\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3e5fdb45-08e9-4f0a-b0fb-2eca3d51975b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1632\",\r\n \"fqdn\": \"pubipcrptestps1632.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "705" @@ -686,7 +686,7 @@ "no-cache" ], "x-ms-request-id": [ - "56b7a9d2-96c9-4488-b618-8a2b1f26ea49" + "68793c8c-face-4d0b-927e-e5e7653e292c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -695,32 +695,32 @@ "no-cache" ], "ETag": [ - "W/\"3d257035-61e2-4a9f-aff5-434762e510ec\"" + "W/\"9f8ce2c2-08ac-44e9-8742-c0d2dbe5dd1c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14954" ], "x-ms-correlation-request-id": [ - "4313964b-51c3-4822-826b-7fe37b2aa700" + "ca89f5e1-03c8-40cc-95fd-bb3d973e7fbc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221644Z:4313964b-51c3-4822-826b-7fe37b2aa700" + "WESTEUROPE:20170427T095801Z:ca89f5e1-03c8-40cc-95fd-bb3d973e7fbc" ], "Date": [ - "Wed, 08 Mar 2017 22:16:43 GMT" + "Thu, 27 Apr 2017 09:58:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjEzMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTYzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2133\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps2133\",\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1632\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps1632\",\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -729,19 +729,19 @@ "207" ], "x-ms-client-request-id": [ - "de1cc6b2-d275-43d3-a332-1a2fe6999a9d" + "3e08ab40-9183-438b-80d8-8da68e2ed73e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133\",\r\n \"etag\": \"W/\\\"f86c7859-bb8e-4385-9b6c-e01d89d30f0a\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"184a8c4e-5a7e-43e7-89c1-984169318395\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2133\",\r\n \"fqdn\": \"pubipcrptestps2133.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632\",\r\n \"etag\": \"W/\\\"663d2c63-353c-438f-84ee-64e486b85002\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3e5fdb45-08e9-4f0a-b0fb-2eca3d51975b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1632\",\r\n \"fqdn\": \"pubipcrptestps1632.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "704" @@ -759,10 +759,10 @@ "3" ], "x-ms-request-id": [ - "79b9f21b-910b-403f-bdca-c620e53014f2" + "170a3eb9-6a61-41bc-ad9e-58f2a26bcf1d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Network/locations/eastus/operations/79b9f21b-910b-403f-bdca-c620e53014f2?api-version=2017-03-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/170a3eb9-6a61-41bc-ad9e-58f2a26bcf1d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -775,31 +775,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "043f646f-549a-4ac5-b106-e0a6fefd094c" + "2beffe5d-6a27-4d60-94b8-85b375f848d2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221612Z:043f646f-549a-4ac5-b106-e0a6fefd094c" + "WESTEUROPE:20170427T095730Z:2beffe5d-6a27-4d60-94b8-85b375f848d2" ], "Date": [ - "Wed, 08 Mar 2017 22:16:12 GMT" + "Thu, 27 Apr 2017 09:57:30 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Network/locations/eastus/operations/79b9f21b-910b-403f-bdca-c620e53014f2?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzliOWYyMWItOTEwYi00MDNmLWJkY2EtYzYyMGU1MzAxNGYyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/170a3eb9-6a61-41bc-ad9e-58f2a26bcf1d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTcwYTNlYjktNmE2MS00MWJjLWFkOWUtNThmMmEyNmJjZjFkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -817,7 +817,7 @@ "no-cache" ], "x-ms-request-id": [ - "1edab383-2f25-4de4-801e-c6783a5dcde9" + "1b3ef245-dfc6-4300-894b-49cba7f7f7f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -830,40 +830,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14957" ], "x-ms-correlation-request-id": [ - "d5d3a536-dd21-4c48-a342-66336fbb83b2" + "6538014b-e0d9-4c17-b548-7fe7f47780fc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221643Z:d5d3a536-dd21-4c48-a342-66336fbb83b2" + "WESTEUROPE:20170427T095800Z:6538014b-e0d9-4c17-b548-7fe7f47780fc" ], "Date": [ - "Wed, 08 Mar 2017 22:16:42 GMT" + "Thu, 27 Apr 2017 09:58:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e41dd999-cd04-4905-9e5a-11b7c6a7ca7c" + "62b085cd-63d2-408c-b9d6-a237285d7d9f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps2133' under resource group 'crptestps2133' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps1632' under resource group 'crptestps1632' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "170" @@ -881,13 +881,13 @@ "gateway" ], "x-ms-request-id": [ - "10144aeb-5c98-47a6-b030-76ec101556a7" + "b18c195f-a3df-4822-9594-86a23fd21451" ], "x-ms-correlation-request-id": [ - "10144aeb-5c98-47a6-b030-76ec101556a7" + "b18c195f-a3df-4822-9594-86a23fd21451" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221644Z:10144aeb-5c98-47a6-b030-76ec101556a7" + "WESTEUROPE:20170427T095801Z:b18c195f-a3df-4822-9594-86a23fd21451" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -896,25 +896,25 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:16:43 GMT" + "Thu, 27 Apr 2017 09:58:00 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"etag\": \"W/\\\"85d8596c-814e-4035-bb94-1210acc2a058\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"70aeff64-837c-4023-bef3-81f2533e2e61\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"85d8596c-814e-4035-bb94-1210acc2a058\\\"\",\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/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yybzqyionh5ubjllk4ksapstrc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"etag\": \"W/\\\"81a5dca7-2ddb-411c-a132-4e5d9ad177ee\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5a965bed-dfc5-49fc-96b3-39657c0c54da\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"81a5dca7-2ddb-411c-a132-4e5d9ad177ee\\\"\",\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/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xneruxb5oyxetcraemm23fc4cf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1727" @@ -929,7 +929,7 @@ "no-cache" ], "x-ms-request-id": [ - "2e619fa2-1095-4dd9-b429-e8b3f0390313" + "2e3f5428-0b0f-410b-9a12-afe876011d32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -938,47 +938,47 @@ "no-cache" ], "ETag": [ - "W/\"85d8596c-814e-4035-bb94-1210acc2a058\"" + "W/\"81a5dca7-2ddb-411c-a132-4e5d9ad177ee\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14952" ], "x-ms-correlation-request-id": [ - "3c64dd4d-e1fd-44a6-a701-c9d434e773d9" + "170798e0-9b60-4add-8b68-247cea4f6dfe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221647Z:3c64dd4d-e1fd-44a6-a701-c9d434e773d9" + "WESTEUROPE:20170427T095802Z:170798e0-9b60-4add-8b68-247cea4f6dfe" ], "Date": [ - "Wed, 08 Mar 2017 22:16:47 GMT" + "Thu, 27 Apr 2017 09:58:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8586dc1-1fd5-45ef-a139-c9f3e0670637" + "c7cc7554-1ca0-437c-865a-447482867255" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"etag\": \"W/\\\"85d8596c-814e-4035-bb94-1210acc2a058\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"70aeff64-837c-4023-bef3-81f2533e2e61\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"85d8596c-814e-4035-bb94-1210acc2a058\\\"\",\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/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yybzqyionh5ubjllk4ksapstrc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"etag\": \"W/\\\"81a5dca7-2ddb-411c-a132-4e5d9ad177ee\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5a965bed-dfc5-49fc-96b3-39657c0c54da\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"81a5dca7-2ddb-411c-a132-4e5d9ad177ee\\\"\",\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/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xneruxb5oyxetcraemm23fc4cf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1727" @@ -993,7 +993,7 @@ "no-cache" ], "x-ms-request-id": [ - "4a8dffb3-244d-4070-87d7-8104856f5e3a" + "c854ac28-4ea0-4b4f-86a5-f7a251dd8a56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,47 +1002,47 @@ "no-cache" ], "ETag": [ - "W/\"85d8596c-814e-4035-bb94-1210acc2a058\"" + "W/\"81a5dca7-2ddb-411c-a132-4e5d9ad177ee\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14951" ], "x-ms-correlation-request-id": [ - "b140bf30-61ae-429c-a7cb-eb41a89092e7" + "e6b0a9f2-c809-4d89-ab8b-d994df3b3b63" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221647Z:b140bf30-61ae-429c-a7cb-eb41a89092e7" + "WESTEUROPE:20170427T095802Z:e6b0a9f2-c809-4d89-ab8b-d994df3b3b63" ], "Date": [ - "Wed, 08 Mar 2017 22:16:47 GMT" + "Thu, 27 Apr 2017 09:58:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6b096fe-8e3f-4c6d-ad26-7f8a7f8d3dce" + "fbee94fc-7ed1-4e37-9a6f-5f8cdc329730" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"etag\": \"W/\\\"85d8596c-814e-4035-bb94-1210acc2a058\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"70aeff64-837c-4023-bef3-81f2533e2e61\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"85d8596c-814e-4035-bb94-1210acc2a058\\\"\",\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/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yybzqyionh5ubjllk4ksapstrc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"etag\": \"W/\\\"81a5dca7-2ddb-411c-a132-4e5d9ad177ee\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5a965bed-dfc5-49fc-96b3-39657c0c54da\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"81a5dca7-2ddb-411c-a132-4e5d9ad177ee\\\"\",\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/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xneruxb5oyxetcraemm23fc4cf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1727" @@ -1057,7 +1057,7 @@ "no-cache" ], "x-ms-request-id": [ - "ec6d677d-b4a5-4c6a-8344-13332f50ef35" + "1add6a0d-a8e8-4367-8f5b-ca7efd51abd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1066,32 +1066,32 @@ "no-cache" ], "ETag": [ - "W/\"85d8596c-814e-4035-bb94-1210acc2a058\"" + "W/\"81a5dca7-2ddb-411c-a132-4e5d9ad177ee\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14950" ], "x-ms-correlation-request-id": [ - "05b5b126-b6bc-47d4-974e-37b7a237e467" + "0c441059-374e-4703-9a84-97a0575d09fe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221648Z:05b5b126-b6bc-47d4-974e-37b7a237e467" + "WESTEUROPE:20170427T095803Z:0c441059-374e-4703-9a84-97a0575d09fe" ], "Date": [ - "Wed, 08 Mar 2017 22:16:47 GMT" + "Thu, 27 Apr 2017 09:58:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133\"\r\n }\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"nic0crptestps2133\",\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632\"\r\n }\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"nic0crptestps1632\",\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1100,19 +1100,19 @@ "1082" ], "x-ms-client-request-id": [ - "e506fc55-920f-4d55-b8aa-7b0bb2312c1a" + "6af89007-b631-4b98-8320-9cfb91c6352b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic0crptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"etag\": \"W/\\\"85d8596c-814e-4035-bb94-1210acc2a058\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"70aeff64-837c-4023-bef3-81f2533e2e61\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"85d8596c-814e-4035-bb94-1210acc2a058\\\"\",\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/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2133\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yybzqyionh5ubjllk4ksapstrc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic0crptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"etag\": \"W/\\\"81a5dca7-2ddb-411c-a132-4e5d9ad177ee\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5a965bed-dfc5-49fc-96b3-39657c0c54da\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"81a5dca7-2ddb-411c-a132-4e5d9ad177ee\\\"\",\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/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1632\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xneruxb5oyxetcraemm23fc4cf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1727" @@ -1127,10 +1127,10 @@ "no-cache" ], "x-ms-request-id": [ - "f425be59-226f-4ff2-acf6-74c3d0925a77" + "e78fef9c-dee2-4360-830b-5cacc7751617" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Network/locations/eastus/operations/f425be59-226f-4ff2-acf6-74c3d0925a77?api-version=2017-03-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/e78fef9c-dee2-4360-830b-5cacc7751617?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1143,40 +1143,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "a4811c93-5d90-4314-ab78-955a613b9fdc" + "f68ccee1-1436-45d2-acdb-8662f15a0cb4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221647Z:a4811c93-5d90-4314-ab78-955a613b9fdc" + "WESTEUROPE:20170427T095802Z:f68ccee1-1436-45d2-acdb-8662f15a0cb4" ], "Date": [ - "Wed, 08 Mar 2017 22:16:47 GMT" + "Thu, 27 Apr 2017 09:58:02 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2f9b603-ed37-4fbb-ae91-d8f27ad81062" + "e1a2add8-2137-4392-a8b2-a0d9fd72f6ac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps2133' under resource group 'crptestps2133' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps1632' under resource group 'crptestps1632' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "170" @@ -1194,13 +1194,13 @@ "gateway" ], "x-ms-request-id": [ - "2633447e-f79f-4ba4-8651-a8afbf66cbef" + "f58de3a6-54e4-4d74-a296-2c7ec1ccde09" ], "x-ms-correlation-request-id": [ - "2633447e-f79f-4ba4-8651-a8afbf66cbef" + "f58de3a6-54e4-4d74-a296-2c7ec1ccde09" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221648Z:2633447e-f79f-4ba4-8651-a8afbf66cbef" + "WESTEUROPE:20170427T095803Z:f58de3a6-54e4-4d74-a296-2c7ec1ccde09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1209,25 +1209,25 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:16:47 GMT" + "Thu, 27 Apr 2017 09:58:02 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"etag\": \"W/\\\"4b797d5e-4699-449e-9cdb-51c36d295e52\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"19444487-3b0c-4d7c-90f4-c1a6c6e5bd05\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4b797d5e-4699-449e-9cdb-51c36d295e52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yybzqyionh5ubjllk4ksapstrc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"etag\": \"W/\\\"44d1fde3-5f79-48b2-b290-fffb67efa968\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"682f72d2-8a65-4851-9b2e-70c7801d11e0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"44d1fde3-5f79-48b2-b290-fffb67efa968\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xneruxb5oyxetcraemm23fc4cf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1514" @@ -1242,7 +1242,7 @@ "no-cache" ], "x-ms-request-id": [ - "574eae65-4cf0-4940-9337-3a4688b6fe0c" + "e8f47e0a-b969-46cf-989d-5fd99a7a4995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,47 +1251,47 @@ "no-cache" ], "ETag": [ - "W/\"4b797d5e-4699-449e-9cdb-51c36d295e52\"" + "W/\"44d1fde3-5f79-48b2-b290-fffb67efa968\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14948" ], "x-ms-correlation-request-id": [ - "3c74bca2-3008-4eec-858f-207326a47ae3" + "7453ac4d-babd-4d2c-a8b7-fc75a8266810" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221650Z:3c74bca2-3008-4eec-858f-207326a47ae3" + "WESTEUROPE:20170427T095804Z:7453ac4d-babd-4d2c-a8b7-fc75a8266810" ], "Date": [ - "Wed, 08 Mar 2017 22:16:50 GMT" + "Thu, 27 Apr 2017 09:58:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a056ca7-1f09-4065-a769-d114ea0b8b61" + "4cf7e547-ee46-4fc7-8e74-03067883cb36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"etag\": \"W/\\\"4b797d5e-4699-449e-9cdb-51c36d295e52\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"19444487-3b0c-4d7c-90f4-c1a6c6e5bd05\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4b797d5e-4699-449e-9cdb-51c36d295e52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yybzqyionh5ubjllk4ksapstrc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"etag\": \"W/\\\"44d1fde3-5f79-48b2-b290-fffb67efa968\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"682f72d2-8a65-4851-9b2e-70c7801d11e0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"44d1fde3-5f79-48b2-b290-fffb67efa968\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xneruxb5oyxetcraemm23fc4cf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1514" @@ -1306,7 +1306,7 @@ "no-cache" ], "x-ms-request-id": [ - "01daf68b-de9d-4318-9093-280756913586" + "4d9af537-e251-4c87-b9fd-4e37b767de25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1315,47 +1315,47 @@ "no-cache" ], "ETag": [ - "W/\"4b797d5e-4699-449e-9cdb-51c36d295e52\"" + "W/\"44d1fde3-5f79-48b2-b290-fffb67efa968\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14947" ], "x-ms-correlation-request-id": [ - "c2a76bf9-dbe2-40aa-9a9f-6c511dfe30b5" + "74757811-64db-4b07-ae92-a7bd5d1510ad" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221650Z:c2a76bf9-dbe2-40aa-9a9f-6c511dfe30b5" + "WESTEUROPE:20170427T095804Z:74757811-64db-4b07-ae92-a7bd5d1510ad" ], "Date": [ - "Wed, 08 Mar 2017 22:16:50 GMT" + "Thu, 27 Apr 2017 09:58:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41095d07-ff54-4c4a-9b77-729779ec65e0" + "cecc9482-d5ce-47ac-9ea6-8ef10cba0342" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"etag\": \"W/\\\"4b797d5e-4699-449e-9cdb-51c36d295e52\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"19444487-3b0c-4d7c-90f4-c1a6c6e5bd05\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4b797d5e-4699-449e-9cdb-51c36d295e52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yybzqyionh5ubjllk4ksapstrc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"etag\": \"W/\\\"44d1fde3-5f79-48b2-b290-fffb67efa968\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"682f72d2-8a65-4851-9b2e-70c7801d11e0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"44d1fde3-5f79-48b2-b290-fffb67efa968\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xneruxb5oyxetcraemm23fc4cf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1514" @@ -1370,7 +1370,7 @@ "no-cache" ], "x-ms-request-id": [ - "8237278c-c5b4-48a7-89ee-75cdcbc9a09f" + "84d7eaa0-b033-4993-b693-f33881650c5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1379,32 +1379,32 @@ "no-cache" ], "ETag": [ - "W/\"4b797d5e-4699-449e-9cdb-51c36d295e52\"" + "W/\"44d1fde3-5f79-48b2-b290-fffb67efa968\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14946" ], "x-ms-correlation-request-id": [ - "de8abcbf-9557-445d-b0c6-06c447170621" + "58b80635-e7a2-4147-9687-177f00549e2f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221650Z:de8abcbf-9557-445d-b0c6-06c447170621" + "WESTEUROPE:20170427T095804Z:58b80635-e7a2-4147-9687-177f00549e2f" ], "Date": [ - "Wed, 08 Mar 2017 22:16:50 GMT" + "Thu, 27 Apr 2017 09:58:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"nic1crptestps2133\",\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"nic1crptestps1632\",\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1413,19 +1413,19 @@ "869" ], "x-ms-client-request-id": [ - "5c7422e8-f489-4401-89de-25dce79a0c8b" + "b4b380af-8146-471e-b64d-0478e040b0e9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1crptestps2133\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"etag\": \"W/\\\"4b797d5e-4699-449e-9cdb-51c36d295e52\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"19444487-3b0c-4d7c-90f4-c1a6c6e5bd05\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4b797d5e-4699-449e-9cdb-51c36d295e52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2133/subnets/subnetcrptestps2133\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yybzqyionh5ubjllk4ksapstrc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps1632\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"etag\": \"W/\\\"44d1fde3-5f79-48b2-b290-fffb67efa968\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"682f72d2-8a65-4851-9b2e-70c7801d11e0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"44d1fde3-5f79-48b2-b290-fffb67efa968\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1632/subnets/subnetcrptestps1632\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xneruxb5oyxetcraemm23fc4cf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1514" @@ -1440,10 +1440,10 @@ "no-cache" ], "x-ms-request-id": [ - "0808edfa-ff9b-4279-827e-06c1f11895b5" + "d44962a3-f6a7-4818-a9f4-0c9c1628b9f0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Network/locations/eastus/operations/0808edfa-ff9b-4279-827e-06c1f11895b5?api-version=2017-03-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Network/locations/eastus/operations/d44962a3-f6a7-4818-a9f4-0c9c1628b9f0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1456,23 +1456,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-correlation-request-id": [ - "c99da916-4e94-4e2d-be91-c089a3176f34" + "1bbda885-6606-4a95-aee4-57fcdecc01a9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221649Z:c99da916-4e94-4e2d-be91-c089a3176f34" + "WESTEUROPE:20170427T095804Z:1bbda885-6606-4a95-aee4-57fcdecc01a9" ], "Date": [ - "Wed, 08 Mar 2017 22:16:49 GMT" + "Thu, 27 Apr 2017 09:58:04 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Storage/storageAccounts/stocrptestps2133?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Storage/storageAccounts/stocrptestps1632?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1483,15 +1483,15 @@ "88" ], "x-ms-client-request-id": [ - "c94cc9a2-1ff5-4803-9ee5-86ba41f5c856" + "8edba526-5d0a-464e-8785-fbf9d6e7465e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, @@ -1513,43 +1513,43 @@ "1199" ], "x-ms-request-id": [ - "4a0b67bf-57c6-419a-a192-7ef3ef1215e9" + "651924bf-b0e1-49ed-843b-9c8023b6320f" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Storage/operations/c74ffee4-b7aa-4cca-985c-e21f15787649?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Storage/operations/eb63ffba-5c2d-4a4f-8c8d-edf832c778ed?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "4a0b67bf-57c6-419a-a192-7ef3ef1215e9" + "651924bf-b0e1-49ed-843b-9c8023b6320f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221653Z:4a0b67bf-57c6-419a-a192-7ef3ef1215e9" + "WESTEUROPE:20170427T095806Z:651924bf-b0e1-49ed-843b-9c8023b6320f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 08 Mar 2017 22:16:53 GMT" + "Thu, 27 Apr 2017 09:58:05 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Storage/operations/c74ffee4-b7aa-4cca-985c-e21f15787649?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2M3NGZmZWU0LWI3YWEtNGNjYS05ODVjLWUyMWYxNTc4NzY0OT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Storage/operations/eb63ffba-5c2d-4a4f-8c8d-edf832c778ed?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2ViNjNmZmJhLTVjMmQtNGE0Zi04YzhkLWVkZjgzMmM3NzhlZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, @@ -1568,7 +1568,7 @@ "no-cache" ], "x-ms-request-id": [ - "67522c8b-5523-439c-9c8c-0565eb5732ae" + "b3cbc6a1-d43e-4035-9913-551e724a8ab2" ], "Cache-Control": [ "no-cache" @@ -1578,43 +1578,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14883" ], "x-ms-correlation-request-id": [ - "67522c8b-5523-439c-9c8c-0565eb5732ae" + "b3cbc6a1-d43e-4035-9913-551e724a8ab2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221724Z:67522c8b-5523-439c-9c8c-0565eb5732ae" + "WESTEUROPE:20170427T095837Z:b3cbc6a1-d43e-4035-9913-551e724a8ab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 08 Mar 2017 22:17:23 GMT" + "Thu, 27 Apr 2017 09:58:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Storage/storageAccounts/stocrptestps2133?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyMTMzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Storage/storageAccounts/stocrptestps1632?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxNjMyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "025e2ea6-cb5d-4d44-a0e6-0db64de40c3b" + "52560142-f578-44d0-9bf8-7601b7e599e2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Storage/storageAccounts/stocrptestps2133\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps2133\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2017-03-08T22:16:52.4901435Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2133.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Storage/storageAccounts/stocrptestps1632\",\r\n \"location\": \"eastus\",\r\n \"name\": \"stocrptestps1632\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2017-04-27T09:58:06.669297Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1632.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -1629,7 +1629,7 @@ "no-cache" ], "x-ms-request-id": [ - "0ea921ed-bc4f-4722-945e-5a528cb89f9d" + "a35bb944-a43e-44cf-9c30-b12822506394" ], "Cache-Control": [ "no-cache" @@ -1639,43 +1639,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14882" ], "x-ms-correlation-request-id": [ - "0ea921ed-bc4f-4722-945e-5a528cb89f9d" + "a35bb944-a43e-44cf-9c30-b12822506394" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221724Z:0ea921ed-bc4f-4722-945e-5a528cb89f9d" + "WESTEUROPE:20170427T095838Z:a35bb944-a43e-44cf-9c30-b12822506394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 08 Mar 2017 22:17:24 GMT" + "Thu, 27 Apr 2017 09:58:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Storage/storageAccounts/stocrptestps2133/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyMTMzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Storage/storageAccounts/stocrptestps1632/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxNjMyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab420d06-1b95-4edd-98f3-d14bbd8b7a61" + "5abfa2cb-84ad-4707-985a-8a2ac6160123" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"key1\": \"ZcLlwcO1Pj4XZwHjVBoQxbvy065X4ukiCO9GmsnO8l57qIG0An8brGE7onSQOko7ZPdICQIaV9a9lPc0DFaKlA==\",\r\n \"key2\": \"n4NfE20WiI9WBNf4pZAOJ6vGFoBZssl2WWgHYVBFZMrcG2u72YExDUjyQ8TNRRtcHOSVoSj/YIqmrW1opuk5FQ==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"zuqacD646JnpYGzRkuD+sJONrIKpBvT0GYoOU48/JBLpZnOhJLOY35xB/E0np+6PY24ZjkquWWKb4YJ0kfZd4Q==\",\r\n \"key2\": \"LRIQPvrPigaGBdk+ekXPwHwkH5Rp30zB2UFYZssXZqw2XzwRJ5gUfieGxuf7rE2SfBECozvrwopwUEYX+MRtzA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -1690,7 +1690,7 @@ "no-cache" ], "x-ms-request-id": [ - "a02a65d5-6588-4ef8-adff-53e2c1ef8ea4" + "57144bfc-ae55-4250-9288-a6acc7703818" ], "Cache-Control": [ "no-cache" @@ -1703,25 +1703,25 @@ "1198" ], "x-ms-correlation-request-id": [ - "a02a65d5-6588-4ef8-adff-53e2c1ef8ea4" + "57144bfc-ae55-4250-9288-a6acc7703818" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221724Z:a02a65d5-6588-4ef8-adff-53e2c1ef8ea4" + "WESTEUROPE:20170427T095838Z:57144bfc-ae55-4250-9288-a6acc7703818" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 08 Mar 2017 22:17:24 GMT" + "Thu, 27 Apr 2017 09:58:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"PLACEHOLDER1@\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"PLACEHOLDER1@\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1730,19 +1730,19 @@ "1739" ], "x-ms-client-request-id": [ - "d0ff6787-e0e2-4a3d-bc79-4c72dcbccaa4" + "fbea5c60-c259-48e4-b552-b19b559eeb88" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2210" @@ -1757,16 +1757,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "26b7f970-c302-4593-aacc-3e748a6fda31" + "eca0acda-9cdd-4d3e-96e6-5fc91bbb067c" ], "Cache-Control": [ "no-cache" @@ -1776,34 +1776,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "3aa1a978-2327-4def-9d12-4def716e3869" + "ba690b14-470a-4043-941f-03ccafdb20c7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221748Z:3aa1a978-2327-4def-9d12-4def716e3869" + "WESTEUROPE:20170427T095841Z:ba690b14-470a-4043-941f-03ccafdb20c7" ], "Date": [ - "Wed, 08 Mar 2017 22:17:48 GMT" + "Thu, 27 Apr 2017 09:58:40 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjZiN2Y5NzAtYzMwMi00NTkzLWFhY2MtM2U3NDhhNmZkYTMxP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:17:46.4597864+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26b7f970-c302-4593-aacc-3e748a6fda31\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1821,10 +1821,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "6e020339-13a6-46c3-b1c3-eb73e591d9e3" + "d0dcd7ec-5ae3-4e9d-9b55-6f9f5b885ecb" ], "Cache-Control": [ "no-cache" @@ -1834,34 +1834,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14992" ], "x-ms-correlation-request-id": [ - "c1f44d78-e234-416a-b4e0-169de0963a97" + "e5a51565-34d9-4f9e-9793-bc183f30c734" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221818Z:c1f44d78-e234-416a-b4e0-169de0963a97" + "WESTEUROPE:20170427T095911Z:e5a51565-34d9-4f9e-9793-bc183f30c734" ], "Date": [ - "Wed, 08 Mar 2017 22:18:18 GMT" + "Thu, 27 Apr 2017 09:59:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjZiN2Y5NzAtYzMwMi00NTkzLWFhY2MtM2U3NDhhNmZkYTMxP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:17:46.4597864+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26b7f970-c302-4593-aacc-3e748a6fda31\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1879,10 +1879,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "c7c2045e-4d7a-43e5-950b-dbe19ff237c1" + "82b3f35a-4feb-4edb-beb9-c7956196a5a9" ], "Cache-Control": [ "no-cache" @@ -1892,34 +1892,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-correlation-request-id": [ - "c89fbc53-a68a-405c-b4dc-57df710b71c6" + "a6d9cdc8-4e78-43c8-8a1b-e80c3e1d01e4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221849Z:c89fbc53-a68a-405c-b4dc-57df710b71c6" + "WESTEUROPE:20170427T095941Z:a6d9cdc8-4e78-43c8-8a1b-e80c3e1d01e4" ], "Date": [ - "Wed, 08 Mar 2017 22:18:48 GMT" + "Thu, 27 Apr 2017 09:59:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjZiN2Y5NzAtYzMwMi00NTkzLWFhY2MtM2U3NDhhNmZkYTMxP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:17:46.4597864+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26b7f970-c302-4593-aacc-3e748a6fda31\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1937,10 +1937,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "dc8a5f14-54f9-4038-995f-5d7ce48bdee5" + "fbcb0528-cbf7-4949-aa91-6e30921cc7b4" ], "Cache-Control": [ "no-cache" @@ -1950,34 +1950,92 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14991" + ], + "x-ms-correlation-request-id": [ + "12292558-954f-4649-b8fb-212c30616fbd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T100011Z:12292558-954f-4649-b8fb-212c30616fbd" + ], + "Date": [ + "Thu, 27 Apr 2017 10:00:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "2df6b2b7-32fe-4789-bc6c-e4b2c124e20b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" ], "x-ms-correlation-request-id": [ - "31de85aa-53f9-4487-b19d-0e5ac4f97fc1" + "a2b9dd2e-fdb9-42f9-a213-7ca09f0ff27a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221919Z:31de85aa-53f9-4487-b19d-0e5ac4f97fc1" + "WESTEUROPE:20170427T100041Z:a2b9dd2e-fdb9-42f9-a213-7ca09f0ff27a" ], "Date": [ - "Wed, 08 Mar 2017 22:19:19 GMT" + "Thu, 27 Apr 2017 10:00:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjZiN2Y5NzAtYzMwMi00NTkzLWFhY2MtM2U3NDhhNmZkYTMxP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:17:46.4597864+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26b7f970-c302-4593-aacc-3e748a6fda31\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1995,10 +2053,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "c29e93be-3845-49fa-a117-0f32ff4de542" + "5e99cbb5-c809-457d-ac77-de54da5e18ed" ], "Cache-Control": [ "no-cache" @@ -2008,37 +2066,92 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14989" ], "x-ms-correlation-request-id": [ - "39ed9934-b8c1-44c3-9fe1-90fdb1327caf" + "8982b1c5-b676-48a5-acd8-47ed5cec64ee" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T221949Z:39ed9934-b8c1-44c3-9fe1-90fdb1327caf" + "WESTEUROPE:20170427T100112Z:8982b1c5-b676-48a5-acd8-47ed5cec64ee" ], "Date": [ - "Wed, 08 Mar 2017 22:19:49 GMT" + "Thu, 27 Apr 2017 10:01:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "99d7bd5e-9a05-43d5-a76c-7abbd9819208" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "2ccd4ac4-8ae5-4af4-bb69-cdbc9385cff3" ], - "Connection": [ - "close" + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T100142Z:2ccd4ac4-8ae5-4af4-bb69-cdbc9385cff3" + ], + "Date": [ + "Thu, 27 Apr 2017 10:01:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjZiN2Y5NzAtYzMwMi00NTkzLWFhY2MtM2U3NDhhNmZkYTMxP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:17:46.4597864+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26b7f970-c302-4593-aacc-3e748a6fda31\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -2056,10 +2169,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "064ee6d0-96c2-42c7-b4f7-fa287b98b8a6" + "a7697494-c9dd-411d-b991-1b76adb41e21" ], "Cache-Control": [ "no-cache" @@ -2069,34 +2182,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14987" ], "x-ms-correlation-request-id": [ - "7b517850-b023-4b54-99a0-1d83b11b6918" + "1d710339-3320-4434-9867-4b0943bc4c4f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222020Z:7b517850-b023-4b54-99a0-1d83b11b6918" + "WESTEUROPE:20170427T100212Z:1d710339-3320-4434-9867-4b0943bc4c4f" ], "Date": [ - "Wed, 08 Mar 2017 22:20:19 GMT" + "Thu, 27 Apr 2017 10:02:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjZiN2Y5NzAtYzMwMi00NTkzLWFhY2MtM2U3NDhhNmZkYTMxP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:17:46.4597864+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26b7f970-c302-4593-aacc-3e748a6fda31\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -2114,10 +2227,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "937e46b3-b152-4c89-8cb7-72c2ddffaafd" + "3368e305-b66c-44e6-a7ac-768d6574d228" ], "Cache-Control": [ "no-cache" @@ -2127,34 +2240,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14986" ], "x-ms-correlation-request-id": [ - "3b2d0b61-89e2-4608-9818-e88a665db3f6" + "1df479a5-84ab-4b76-b8b8-95b3c734ddf6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222050Z:3b2d0b61-89e2-4608-9818-e88a665db3f6" + "WESTEUROPE:20170427T100242Z:1df479a5-84ab-4b76-b8b8-95b3c734ddf6" ], "Date": [ - "Wed, 08 Mar 2017 22:20:50 GMT" + "Thu, 27 Apr 2017 10:02:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjZiN2Y5NzAtYzMwMi00NTkzLWFhY2MtM2U3NDhhNmZkYTMxP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:17:46.4597864+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26b7f970-c302-4593-aacc-3e748a6fda31\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -2172,10 +2285,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "ba6ef8f9-7515-477e-84f5-ea888c9c3f59" + "303ccdd5-4a4c-4223-9413-5e10c460e989" ], "Cache-Control": [ "no-cache" @@ -2185,37 +2298,92 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14985" ], "x-ms-correlation-request-id": [ - "604f4cf6-95fe-49f2-8dc9-01e61ce26348" + "d4ab9a12-8d32-469d-929c-ff7431e394d4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222120Z:604f4cf6-95fe-49f2-8dc9-01e61ce26348" + "WESTEUROPE:20170427T100312Z:d4ab9a12-8d32-469d-929c-ff7431e394d4" ], "Date": [ - "Wed, 08 Mar 2017 22:21:20 GMT" + "Thu, 27 Apr 2017 10:03:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "1d177e5a-358e-482a-a579-a54bdd979a8b" + ], + "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": [ + "282b9427-628e-4a3a-a223-6bbd3aab197d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T100342Z:282b9427-628e-4a3a-a223-6bbd3aab197d" ], - "Connection": [ - "close" + "Date": [ + "Thu, 27 Apr 2017 10:03:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjZiN2Y5NzAtYzMwMi00NTkzLWFhY2MtM2U3NDhhNmZkYTMxP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:17:46.4597864+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26b7f970-c302-4593-aacc-3e748a6fda31\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -2233,10 +2401,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "14a26c57-f1d9-444a-bf8f-fea43bc4a776" + "159dbfdb-59c7-49e4-9f53-4ec836d97627" ], "Cache-Control": [ "no-cache" @@ -2246,34 +2414,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14983" ], "x-ms-correlation-request-id": [ - "6d834983-5997-497a-b3dc-bfff9734ea0c" + "9e0d1a5b-ed0d-4f70-a9f0-c0e8ecf240ff" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222151Z:6d834983-5997-497a-b3dc-bfff9734ea0c" + "WESTEUROPE:20170427T100412Z:9e0d1a5b-ed0d-4f70-a9f0-c0e8ecf240ff" ], "Date": [ - "Wed, 08 Mar 2017 22:21:51 GMT" + "Thu, 27 Apr 2017 10:04:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjZiN2Y5NzAtYzMwMi00NTkzLWFhY2MtM2U3NDhhNmZkYTMxP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:17:46.4597864+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26b7f970-c302-4593-aacc-3e748a6fda31\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -2291,10 +2459,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "5e2502aa-8579-48e4-8fee-6a6ac93aade4" + "632a18d5-9d76-43ce-b81a-943f3fc4552f" ], "Cache-Control": [ "no-cache" @@ -2304,34 +2472,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14982" ], "x-ms-correlation-request-id": [ - "5c5bc5b7-c47d-421b-af57-485358d5d2b1" + "3b3d3ce4-913e-4542-a388-70e946023bf9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222221Z:5c5bc5b7-c47d-421b-af57-485358d5d2b1" + "WESTEUROPE:20170427T100442Z:3b3d3ce4-913e-4542-a388-70e946023bf9" ], "Date": [ - "Wed, 08 Mar 2017 22:22:21 GMT" + "Thu, 27 Apr 2017 10:04:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjZiN2Y5NzAtYzMwMi00NTkzLWFhY2MtM2U3NDhhNmZkYTMxP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:17:46.4597864+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26b7f970-c302-4593-aacc-3e748a6fda31\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -2349,10 +2517,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "99e415c5-c211-4077-ada4-d5a33b6d0550" + "b1d3da7c-7a79-4c37-a100-97dda16f7fd6" ], "Cache-Control": [ "no-cache" @@ -2362,34 +2530,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14981" ], "x-ms-correlation-request-id": [ - "a622f74a-bddd-4b9d-867e-a1ea948782e0" + "9f9a8102-3e6d-4807-9330-f977b301dafa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222251Z:a622f74a-bddd-4b9d-867e-a1ea948782e0" + "WESTEUROPE:20170427T100513Z:9f9a8102-3e6d-4807-9330-f977b301dafa" ], "Date": [ - "Wed, 08 Mar 2017 22:22:50 GMT" + "Thu, 27 Apr 2017 10:05:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/26b7f970-c302-4593-aacc-3e748a6fda31?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjZiN2Y5NzAtYzMwMi00NTkzLWFhY2MtM2U3NDhhNmZkYTMxP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/eca0acda-9cdd-4d3e-96e6-5fc91bbb067c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWNhMGFjZGEtOWNkZC00ZDNlLTk2ZTYtNWZjOTFiYmIwNjdjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:17:46.4597864+01:00\",\r\n \"endTime\": \"2017-03-08T23:23:08.1586723+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"26b7f970-c302-4593-aacc-3e748a6fda31\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T11:58:42.3726529+02:00\",\r\n \"endTime\": \"2017-04-27T12:05:16.5965615+02:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"eca0acda-9cdd-4d3e-96e6-5fc91bbb067c\"\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -2407,10 +2575,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "5ee52772-2e45-41ea-b852-d2850fc6fa36" + "a47a045c-8228-45c9-b7c9-32e8c5891d55" ], "Cache-Control": [ "no-cache" @@ -2420,40 +2588,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14980" ], "x-ms-correlation-request-id": [ - "15b5c16b-1036-44dd-a738-84ce4f9d0ffd" + "b0544144-b510-4870-b00c-d99eb3bce285" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222321Z:15b5c16b-1036-44dd-a738-84ce4f9d0ffd" + "WESTEUROPE:20170427T100543Z:b0544144-b510-4870-b00c-d99eb3bce285" ], "Date": [ - "Wed, 08 Mar 2017 22:23:20 GMT" - ], - "Connection": [ - "close" + "Thu, 27 Apr 2017 10:05:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2655" + "2683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2468,10 +2633,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "26ad9802-6b5c-4b5a-8c76-ca1580b29bdb" + "def878b8-e503-4255-a743-21daa2d2a52c" ], "Cache-Control": [ "no-cache" @@ -2481,43 +2646,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14979" ], "x-ms-correlation-request-id": [ - "29caf3bd-7a06-468c-830d-cc7c50b2b30d" + "9ed8519f-31ed-446d-9cf4-27bba7c1d4ba" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222322Z:29caf3bd-7a06-468c-830d-cc7c50b2b30d" + "WESTEUROPE:20170427T100543Z:9ed8519f-31ed-446d-9cf4-27bba7c1d4ba" ], "Date": [ - "Wed, 08 Mar 2017 22:23:22 GMT" + "Thu, 27 Apr 2017 10:05:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4b00c16-d3b6-4d72-9a5a-93557ac63edb" + "d717eb08-cdbc-45dc-a378-2e134b4a2558" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3209" + "3237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2532,10 +2697,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "2ef33a46-4a89-4af2-b778-72731ce2736b" + "b5853155-ae57-43c1-9e77-8bfceed8f5d2" ], "Cache-Control": [ "no-cache" @@ -2545,43 +2710,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14972" ], "x-ms-correlation-request-id": [ - "b4709dae-3dd0-46be-886f-ff5696d6fe49" + "ffe7e85b-b7b1-4b0b-8598-83b4d29f7ef8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222359Z:b4709dae-3dd0-46be-886f-ff5696d6fe49" + "WESTEUROPE:20170427T100648Z:ffe7e85b-b7b1-4b0b-8598-83b4d29f7ef8" ], "Date": [ - "Wed, 08 Mar 2017 22:23:58 GMT" + "Thu, 27 Apr 2017 10:06:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f61087da-1f56-41d8-89d9-8aee8d3408c8" + "b591f752-3412-4d35-beb7-8994ffc29205" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3209" + "3237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2596,10 +2761,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "a707a673-8a4b-4aa9-8cdd-1f8d79b7453b" + "57b36d2e-827e-4adf-84f9-e7d2be02f383" ], "Cache-Control": [ "no-cache" @@ -2609,43 +2774,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14971" ], "x-ms-correlation-request-id": [ - "20a0ced9-1b6e-4928-a246-370f4331f5b4" + "65638aa2-3375-4326-889b-955f41947e10" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222359Z:20a0ced9-1b6e-4928-a246-370f4331f5b4" + "WESTEUROPE:20170427T100648Z:65638aa2-3375-4326-889b-955f41947e10" ], "Date": [ - "Wed, 08 Mar 2017 22:23:59 GMT" + "Thu, 27 Apr 2017 10:06:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea3b4315-534b-46b9-b4ae-5d1938a565ca" + "c15d698c-bfaa-4f0b-aa65-766634923ed7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3209" + "3237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2660,10 +2825,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "8cfbc57b-b8d0-497a-9ac5-aca3dc9a545d" + "8db0eae6-7a04-44f3-9a2a-988de4948e23" ], "Cache-Control": [ "no-cache" @@ -2673,43 +2838,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14970" ], "x-ms-correlation-request-id": [ - "2ada9892-c79e-4eac-8bd4-10e4a5f8a395" + "90d7e8f2-d4ad-41b8-86ce-b61ec917d298" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222400Z:2ada9892-c79e-4eac-8bd4-10e4a5f8a395" + "WESTEUROPE:20170427T100649Z:90d7e8f2-d4ad-41b8-86ce-b61ec917d298" ], "Date": [ - "Wed, 08 Mar 2017 22:23:59 GMT" + "Thu, 27 Apr 2017 10:06:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1fbbdfb-cbb2-40c8-8100-cad790532fb5" + "7ff45e1a-d859-4517-8932-bcaf4221017b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3209" + "3237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2724,10 +2889,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "37198421-ab9d-4ee0-a022-1f9073218279" + "9cc66aae-e503-49ce-b9b6-be44b7a40c81" ], "Cache-Control": [ "no-cache" @@ -2737,43 +2902,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14968" ], "x-ms-correlation-request-id": [ - "01461116-ddbd-4289-b98b-cb5bb5f6b812" + "c5767bfc-b4f9-4114-b02b-6a9486d18b6b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222435Z:01461116-ddbd-4289-b98b-cb5bb5f6b812" + "WESTEUROPE:20170427T100726Z:c5767bfc-b4f9-4114-b02b-6a9486d18b6b" ], "Date": [ - "Wed, 08 Mar 2017 22:24:34 GMT" + "Thu, 27 Apr 2017 10:07:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "392b26c6-eb2f-4d99-9db8-ff3a105ac367" + "72a6755d-1716-4444-b228-d41f9273c6f9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636246122738963108\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288916455212695\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4289" + "4689" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2788,10 +2953,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "da85876b-4179-4e12-864b-0cd53c50d995" + "6d86e621-7451-4bf0-9860-83c01b1dc7e8" ], "Cache-Control": [ "no-cache" @@ -2801,43 +2966,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14959" ], "x-ms-correlation-request-id": [ - "67689da3-85f0-41ed-8d07-984a8dcf9604" + "ed4d2a4b-736a-4e64-9dae-f3c59c7f6ddb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222539Z:67689da3-85f0-41ed-8d07-984a8dcf9604" + "WESTEUROPE:20170427T100834Z:ed4d2a4b-736a-4e64-9dae-f3c59c7f6ddb" ], "Date": [ - "Wed, 08 Mar 2017 22:25:38 GMT" + "Thu, 27 Apr 2017 10:08:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d960b2c1-d296-4b7d-b660-8ada018947a9" + "46609c74-22db-4310-94d4-2061ade60b19" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636246122738963108\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288916455212695\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4289" + "4689" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2852,10 +3017,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "313f5821-b68e-47bc-990c-0b38ab8d5f28" + "54f197f5-306a-4f7d-b849-69cdf4de12f5" ], "Cache-Control": [ "no-cache" @@ -2865,43 +3030,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14957" ], "x-ms-correlation-request-id": [ - "7798eddb-84df-4f48-b994-8954bf47f6fb" + "2914d2c1-0b95-4660-b759-392481dbae9d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222539Z:7798eddb-84df-4f48-b994-8954bf47f6fb" + "WESTEUROPE:20170427T100835Z:2914d2c1-0b95-4660-b759-392481dbae9d" ], "Date": [ - "Wed, 08 Mar 2017 22:25:38 GMT" + "Thu, 27 Apr 2017 10:08:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a69b0029-19d0-4991-8512-c1ff8a4881a3" + "e4501a29-59b4-4dd1-8fbf-156dec45cd8c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636246122738963108\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288916455212695\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4289" + "4689" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2916,10 +3081,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "64b9d756-ad34-43a4-a790-d05bc84b7846" + "754676f0-117f-49f4-baa8-e6cca20ed03f" ], "Cache-Control": [ "no-cache" @@ -2929,43 +3094,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14952" ], "x-ms-correlation-request-id": [ - "3211fb5b-d4b8-463b-988b-5a6ea53684ed" + "6b4302dd-7bbe-4261-abc5-aca23abe3b38" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222540Z:3211fb5b-d4b8-463b-988b-5a6ea53684ed" + "WESTEUROPE:20170427T100835Z:6b4302dd-7bbe-4261-abc5-aca23abe3b38" ], "Date": [ - "Wed, 08 Mar 2017 22:25:40 GMT" + "Thu, 27 Apr 2017 10:08:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "284baf68-b2c3-4c9a-9bf9-569394a4e964" + "9a35299d-281e-43f5-af61-40d72550fd92" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3209" + "3237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2980,10 +3145,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "902a89af-031b-4be0-be31-32d359626b56" + "ca38b0d8-4a88-4121-baeb-00bb1ccf9839" ], "Cache-Control": [ "no-cache" @@ -2993,43 +3158,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14949" ], "x-ms-correlation-request-id": [ - "557c9be2-60a6-4f4e-8140-339d146b0f7f" + "a015ce0b-1a20-4d40-81e1-b86d4204d91c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222642Z:557c9be2-60a6-4f4e-8140-339d146b0f7f" + "WESTEUROPE:20170427T100936Z:a015ce0b-1a20-4d40-81e1-b86d4204d91c" ], "Date": [ - "Wed, 08 Mar 2017 22:26:42 GMT" + "Thu, 27 Apr 2017 10:09:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4a471d8-3866-4537-ac07-2bed94755588" + "d37cd0dd-3b0f-4f85-87c4-d0cd69c5fe6b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adra-match\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/adra-match\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advellence\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/advellence\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike-database\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike-database\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akeron\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/akeron\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alvao\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/alvao\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"analitica\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/analitica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"angoss\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/angoss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aqua-security\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/aqua-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"archive360\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/archive360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arvatosystems\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/arvatosystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlassian\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlassian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avds\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/avds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"averesystems\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/averesystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axinom\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/axinom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brainshare-it\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/brainshare-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bugrius\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/bugrius\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caringo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/caringo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cbrdashboard\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cbrdashboard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cherwell\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cherwell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cipherpoint\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cipherpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"click2cloud-inc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/click2cloud-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcoreo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcoreo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcruiser\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudify\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test2\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"companyname-short\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/companyname-short\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crate-io\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/crate-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cristie-software-clonemanager\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cristie-software-clonemanager\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"csstest\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/csstest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dalet\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dalet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dolbydeveloper\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dolbydeveloper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastbanctech\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastbanctech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"element-it\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/element-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elementrem\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/elementrem\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethcore\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethcore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowforma\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowforma\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fluid-mobility\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/fluid-mobility\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"folio3-dynamics-services\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/folio3-dynamics-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fptjapan\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/fptjapan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g-data-software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/g-data-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gordic\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/gordic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HDInsight\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/HDInsight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"humanlogic\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/humanlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"idcspa\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/idcspa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inriver\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/inriver\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"insitesoftware\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/insitesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kollective\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/kollective\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lakesidesoftware\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/lakesidesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"learningtechnolgy\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/learningtechnolgy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logiticks\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/logiticks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logmein\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/logmein\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luxoft\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/luxoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mactores_inc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mactores_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediazenie\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediazenie\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HDInsight.Current\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HDInsight.Current\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Edp.Edp\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Edp.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msrazuresapservices\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/msrazuresapservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"namirial\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/namirial\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsil\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsil\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"new-signature\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/new-signature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodesource\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodesource\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ooyala\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ooyala\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orckestra\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/orckestra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orfast-technologies\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/orfast-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"origam\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/origam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pe-gromenko\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/pe-gromenko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primesoft\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/primesoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"proarch\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/proarch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quales\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/quales\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocket_software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocket_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sapho\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sapho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scsk\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/scsk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"servoy\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/servoy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"slamby\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/slamby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratus-id\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratus-id\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"suse-byos\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/suse-byos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SymantecTest9\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/SymantecTest9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SymantecTestLsTestLogonImport\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/SymantecTestLsTestLogonImport\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SymantecTestLsTestSerdefDat\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/SymantecTestLsTestSerdefDat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SymantecTestRU4\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/SymantecTestRU4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusiondashboard\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusiondashboard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unisys-azuremp-stealth\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/unisys-azuremp-stealth\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vecompsoftware\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/vecompsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata-inc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ventify\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/ventify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vertabelo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/vertabelo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vintegris\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/vintegris\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visionware\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/visionware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wipro-ltd\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/wipro-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xrm\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/xrm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adra-match\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/adra-match\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advellence\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/advellence\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike-database\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike-database\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AIP.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/AIP.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akeron\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/akeron\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alvao\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/alvao\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"analitica\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/analitica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"angoss\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/angoss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aqua-security\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/aqua-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"archive360\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/archive360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arvatosystems\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/arvatosystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlassian\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlassian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avds\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/avds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"averesystems\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/averesystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axinom\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/axinom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brainshare-it\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/brainshare-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Brianjac.Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Brianjac.Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bugrius\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/bugrius\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"caringo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/caringo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cbrdashboard\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cbrdashboard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cherwell\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cherwell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cipherpoint\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cipherpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"click2cloud-inc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/click2cloud-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcoreo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcoreo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcruiser\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudify\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test2\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudneeti\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudneeti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"coffingdw\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/coffingdw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"companyname-short\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/companyname-short\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crate-io\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/crate-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cristie-software-clonemanager\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cristie-software-clonemanager\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"csstest\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/csstest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dalet\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dalet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dolbydeveloper\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dolbydeveloper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastbanctech\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastbanctech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"element-it\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/element-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elementrem\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/elementrem\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethcore\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethcore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowforma\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowforma\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fluid-mobility\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/fluid-mobility\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"folio3-dynamics-services\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/folio3-dynamics-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fptjapan\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/fptjapan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"g-data-software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/g-data-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gordic\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/gordic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HDInsight\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/HDInsight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"humanlogic\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/humanlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"idcspa\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/idcspa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"inriver\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/inriver\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"insitesoftware\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/insitesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kasperskylab.ksa\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kasperskylab.ksa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kollective\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/kollective\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lakesidesoftware\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/lakesidesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"learningtechnolgy\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/learningtechnolgy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logiticks\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/logiticks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logmein\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/logmein\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luxoft\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/luxoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mactores_inc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mactores_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediazenie\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediazenie\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HDInsight.Current\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HDInsight.Current\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.UUID\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.UUID\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msrazuresapservices\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/msrazuresapservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"namirial\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/namirial\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsil\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsil\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"new-signature\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/new-signature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodesource\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodesource\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ooyala\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ooyala\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orckestra\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/orckestra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orfast-technologies\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/orfast-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"origam\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/origam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pe-gromenko\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/pe-gromenko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primesoft\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/primesoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"proarch\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/proarch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quales\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/quales\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocket_software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocket_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sapho\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sapho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scsk\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/scsk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"servoy\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/servoy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sestek\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sestek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"slamby\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/slamby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratus-id\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratus-id\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"suse-byos\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/suse-byos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SymantecTest9\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/SymantecTest9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SymantecTestLsTestLogonImport\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/SymantecTestLsTestLogonImport\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SymantecTestLsTestSerdefDat\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/SymantecTestLsTestSerdefDat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SymantecTestRU4\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/SymantecTestRU4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusiondashboard\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusiondashboard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tokyosystemhouse\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/tokyosystemhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unisys-azuremp-stealth\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/unisys-azuremp-stealth\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vecompsoftware\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/vecompsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velostrata-inc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/velostrata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ventify\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/ventify\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vertabelo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/vertabelo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vintegris\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/vintegris\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visionware\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/visionware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"waves\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/waves\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wipro-ltd\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/wipro-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xrm\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/xrm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zealcorp\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/zealcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "128848" + "136753" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3044,10 +3209,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "f9cefe57-6d7d-423a-bcb5-35422fef9c50_131213019293321783" + "f9cefe57-6d7d-423a-bcb5-35422fef9c50_131335619613861351" ], "x-ms-request-id": [ - "5410b7bc-e07d-4b35-9c1f-8840cdcb13c8" + "cd8cd255-de05-441d-b587-63d1519135a1" ], "Cache-Control": [ "no-cache" @@ -3057,40 +3222,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14978" ], "x-ms-correlation-request-id": [ - "576e8251-f5dd-419e-aaac-a8bbdf0b2337" + "b212013f-44f4-4ac1-8694-f68cd89fc3d1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222323Z:576e8251-f5dd-419e-aaac-a8bbdf0b2337" + "WESTEUROPE:20170427T100544Z:b212013f-44f4-4ac1-8694-f68cd89fc3d1" ], "Date": [ - "Wed, 08 Mar 2017 22:23:23 GMT" + "Thu, 27 Apr 2017 10:05:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "220994ef-4190-4565-a765-764a63940935" + "d018e4fe-9985-42fa-a185-4e56da10f77e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1033" @@ -3108,10 +3273,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131260674689488579" + "ab90d441-6939-4ab1-9dfa-bef247d64088_131281297559710737" ], "x-ms-request-id": [ - "9148a33a-15d4-4245-bda5-5552fcbbcee5" + "9a4dcfab-a687-462d-bbb8-d8d8e9747055" ], "Cache-Control": [ "no-cache" @@ -3121,40 +3286,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14977" ], "x-ms-correlation-request-id": [ - "5e647901-07fd-4d93-9f08-d1bd62bab0fd" + "758b0c83-014b-4502-8264-e92878d4d161" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222324Z:5e647901-07fd-4d93-9f08-d1bd62bab0fd" + "WESTEUROPE:20170427T100544Z:758b0c83-014b-4502-8264-e92878d4d161" ], "Date": [ - "Wed, 08 Mar 2017 22:23:23 GMT" + "Thu, 27 Apr 2017 10:05:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69e5ed10-5fca-4384-901d-23c304a74a52" + "331f43b6-42ce-412a-9c31-522a1da45f3c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"2.1\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/Subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "252" @@ -3172,10 +3337,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "ab90d441-6939-4ab1-9dfa-bef247d64088_131260674689488579" + "ab90d441-6939-4ab1-9dfa-bef247d64088_131281297559710737" ], "x-ms-request-id": [ - "4243dddd-b5fc-4f0d-b5cc-aadd02c0d56f" + "8f247587-a103-4b3f-b6e3-21ae239fedda" ], "Cache-Control": [ "no-cache" @@ -3185,23 +3350,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14976" ], "x-ms-correlation-request-id": [ - "15ffc78e-df29-4c18-9523-77c6f69a172a" + "efb62db9-1421-43eb-a702-cdc21ede30cd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222324Z:15ffc78e-df29-4c18-9523-77c6f69a172a" + "WESTEUROPE:20170427T100544Z:efb62db9-1421-43eb-a702-cdc21ede30cd" ], "Date": [ - "Wed, 08 Mar 2017 22:23:23 GMT" + "Thu, 27 Apr 2017 10:05:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzMvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzIvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\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 \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -3212,19 +3377,19 @@ "267" ], "x-ms-client-request-id": [ - "4978c9c1-ab1a-4f00-ba7a-2fa535ff976e" + "7eaaf87d-d396-45ce-a892-04d9f3fe95a0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "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 \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n}", "ResponseHeaders": { "Content-Length": [ "475" @@ -3239,16 +3404,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/9813c8d2-a7d6-465d-9c99-627c52925af7?api-version=2016-04-30-preview" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/a16fcafe-8e92-4c2d-9679-8f10e99f674c?api-version=2016-04-30-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "9813c8d2-a7d6-465d-9c99-627c52925af7" + "a16fcafe-8e92-4c2d-9679-8f10e99f674c" ], "Cache-Control": [ "no-cache" @@ -3258,37 +3423,95 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "f4c00bb8-9fc3-4ffc-8eeb-734be619a98e" + "a674d97b-c417-407c-bf41-b346ef17992b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222328Z:f4c00bb8-9fc3-4ffc-8eeb-734be619a98e" + "WESTEUROPE:20170427T100547Z:a674d97b-c417-407c-bf41-b346ef17992b" ], "Date": [ - "Wed, 08 Mar 2017 22:23:28 GMT" + "Thu, 27 Apr 2017 10:05:47 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/9813c8d2-a7d6-465d-9c99-627c52925af7?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTgxM2M4ZDItYTdkNi00NjVkLTljOTktNjI3YzUyOTI1YWY3P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/a16fcafe-8e92-4c2d-9679-8f10e99f674c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTE2ZmNhZmUtOGU5Mi00YzJkLTk2NzktOGYxMGU5OWY2NzRjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:23:25.2206187+01:00\",\r\n \"endTime\": \"2017-03-08T23:23:57.0973167+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9813c8d2-a7d6-465d-9c99-627c52925af7\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T12:05:47.15014+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a16fcafe-8e92-4c2d-9679-8f10e99f674c\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "132" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "d1754f70-bc77-4242-891f-93589c5a78e8" + ], + "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": [ + "63afa3c6-e104-41d2-80b2-ea314d8934b0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T100617Z:63afa3c6-e104-41d2-80b2-ea314d8934b0" + ], + "Date": [ + "Thu, 27 Apr 2017 10:06:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/a16fcafe-8e92-4c2d-9679-8f10e99f674c?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTE2ZmNhZmUtOGU5Mi00YzJkLTk2NzktOGYxMGU5OWY2NzRjP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T12:05:47.15014+02:00\",\r\n \"endTime\": \"2017-04-27T12:06:32.2222818+02:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a16fcafe-8e92-4c2d-9679-8f10e99f674c\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3303,10 +3526,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "27b06a4f-8a02-4840-b569-7b7092fc6c75" + "92748d31-c71e-4d41-a260-dbed6f68168b" ], "Cache-Control": [ "no-cache" @@ -3316,34 +3539,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14974" ], "x-ms-correlation-request-id": [ - "3f59d103-64e4-44f8-a16e-7e4f0cfc468c" + "e27ce4fa-71be-43dd-83ea-ccecc2c48426" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222359Z:3f59d103-64e4-44f8-a16e-7e4f0cfc468c" + "WESTEUROPE:20170427T100648Z:e27ce4fa-71be-43dd-83ea-ccecc2c48426" ], "Date": [ - "Wed, 08 Mar 2017 22:23:58 GMT" + "Thu, 27 Apr 2017 10:06:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzMvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzIvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "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 \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n}", "ResponseHeaders": { "Content-Length": [ "476" @@ -3361,10 +3584,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "d1b1412f-ac27-4be3-931c-754f42542284" + "180e0af5-843c-4fec-9c63-c0c648ce6c8f" ], "Cache-Control": [ "no-cache" @@ -3374,43 +3597,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14973" ], "x-ms-correlation-request-id": [ - "cf20bfec-573b-4589-acc8-7dadc5a2187f" + "3d1614bf-d4ac-4c51-8ac5-8ae748f9f4b5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222359Z:cf20bfec-573b-4589-acc8-7dadc5a2187f" + "WESTEUROPE:20170427T100648Z:3d1614bf-d4ac-4c51-8ac5-8ae748f9f4b5" ], "Date": [ - "Wed, 08 Mar 2017 22:23:58 GMT" + "Thu, 27 Apr 2017 10:06:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?$expand=instanceView&api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?$expand=instanceView&api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3d54ec5-467a-49a2-b030-ad7b42d4f15f" + "c41ed2aa-37d3-41ea-8586-5be7416df8df" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.797\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2017-03-08T23:23:57+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-03-08T23:23:57.0973167+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.802\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2017-04-27T12:06:45+02:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-27T12:06:32.2222818+02:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4943" + "4971" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3425,10 +3648,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "06991bc2-8c74-4320-8683-ec343a24e058" + "52c57226-072c-4bfd-a31f-7467f5983164" ], "Cache-Control": [ "no-cache" @@ -3438,43 +3661,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14969" ], "x-ms-correlation-request-id": [ - "8ad38b91-bced-4657-838c-73c90bdbc2a4" + "9b4d40b9-980c-4de7-ac7e-f650c83df9dc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222400Z:8ad38b91-bced-4657-838c-73c90bdbc2a4" + "WESTEUROPE:20170427T100649Z:9b4d40b9-980c-4de7-ac7e-f650c83df9dc" ], "Date": [ - "Wed, 08 Mar 2017 22:23:59 GMT" + "Thu, 27 Apr 2017 10:06:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?$expand=instanceView&api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?$expand=instanceView&api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3736eb8d-8670-49fd-a361-d4b136b481ae" + "e1a98324-8231-4278-9435-18b8279f31f6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.797\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2017-03-08T23:24:28+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-03-08T23:23:57.0973167+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.802\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2017-04-27T12:07:15+02:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"extensions\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-27T12:06:32.2222818+02:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4943" + "4971" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3489,10 +3712,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "31e2c865-7947-43ae-af00-ece55a8b2e8f" + "41f113f8-6573-4c9c-b57c-f3445b07448b" ], "Cache-Control": [ "no-cache" @@ -3502,43 +3725,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14967" ], "x-ms-correlation-request-id": [ - "b254edf2-a15b-4dec-8960-28f8ccb9ea35" + "f7744739-c871-4a82-ac83-5558222fb2ef" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222435Z:b254edf2-a15b-4dec-8960-28f8ccb9ea35" + "WESTEUROPE:20170427T100727Z:f7744739-c871-4a82-ac83-5558222fb2ef" ], "Date": [ - "Wed, 08 Mar 2017 22:24:34 GMT" + "Thu, 27 Apr 2017 10:07:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133?$expand=instanceView&api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzM/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632?$expand=instanceView&api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzI/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c730a98-3f07-429c-8722-92e2e7957b7e" + "d277d1f8-eed3-421e-8eea-129deb2b38f7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"12ec9fe0-8cbe-4763-bdf5-aea9629337b4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic0crptestps2133\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Network/networkInterfaces/nic1crptestps2133\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.797\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2017-03-08T23:25:28+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=b8dd707d-b5d8-418c-b930-b6381b6d4708 roleInstance=_vmcrptestps2133\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-03-08T23:25:18.8042497+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636246122738963108\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133\",\r\n \"name\": \"vmcrptestps2133\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"bfbc5d80-2cd5-4df0-a1fa-0febedd6ca52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic0crptestps1632\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Network/networkInterfaces/nic1crptestps1632\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.802\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2017-04-27T12:08:30+02:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n }\r\n ]\r\n },\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureCATExtensionHandler\",\r\n \"type\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2.0.68\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=f9b019bc-876f-4d94-b1fa-0ef103f07ed7 roleInstance=_vmcrptestps1632\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"BGInfo\",\r\n \"type\": \"Microsoft.Compute.BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Plugin enabled (handler name: Microsoft.Compute.BGInfo, extension name: , version: 2.1).\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-27T12:08:25.7247542+02:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288916455212695\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/BGInfo\",\r\n \"name\": \"BGInfo\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"name\": \"vmcrptestps1632\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6880" + "7280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3553,10 +3776,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "c1edeff4-6a82-4f4a-a278-a0c1925aa239" + "5ec52221-0848-4325-8529-1843e6f12ab7" ], "Cache-Control": [ "no-cache" @@ -3566,23 +3789,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14956" ], "x-ms-correlation-request-id": [ - "32f992d8-d4b2-44bb-afa5-31f926f6fdc9" + "0ef0bbf9-a60b-45b9-b40b-4c9130ca3b58" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222539Z:32f992d8-d4b2-44bb-afa5-31f926f6fdc9" + "WESTEUROPE:20170427T100835Z:0ef0bbf9-a60b-45b9-b40b-4c9130ca3b58" ], "Date": [ - "Wed, 08 Mar 2017 22:25:38 GMT" + "Thu, 27 Apr 2017 10:08:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Storage/storageAccounts/stocrptestps21332?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyMTMzMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Storage/storageAccounts/stocrptestps16322?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxNjMyMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { @@ -3593,15 +3816,15 @@ "89" ], "x-ms-client-request-id": [ - "60b8fdba-ded0-4942-aa81-26d20bfc8a2e" + "3b991820-0457-4813-b867-614c829fe4b9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, @@ -3623,43 +3846,43 @@ "1199" ], "x-ms-request-id": [ - "2208897b-2e5a-45cd-92ca-ae669facbce5" + "b8d8b6da-6368-4c63-8880-a2dd367c0271" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Storage/operations/303cc645-3ab3-4f13-bf0c-7fdef51e7bc8?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Storage/operations/ea95b14a-f15f-4261-9c6f-f9be8a4d6195?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "2208897b-2e5a-45cd-92ca-ae669facbce5" + "b8d8b6da-6368-4c63-8880-a2dd367c0271" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222404Z:2208897b-2e5a-45cd-92ca-ae669facbce5" + "WESTEUROPE:20170427T100655Z:b8d8b6da-6368-4c63-8880-a2dd367c0271" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 08 Mar 2017 22:24:03 GMT" + "Thu, 27 Apr 2017 10:06:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Storage/operations/303cc645-3ab3-4f13-bf0c-7fdef51e7bc8?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzMwM2NjNjQ1LTNhYjMtNGYxMy1iZjBjLTdmZGVmNTFlN2JjOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Storage/operations/ea95b14a-f15f-4261-9c6f-f9be8a4d6195?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2VhOTViMTRhLWYxNWYtNDI2MS05YzZmLWY5YmU4YTRkNjE5NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, @@ -3678,7 +3901,7 @@ "no-cache" ], "x-ms-request-id": [ - "2effdf3a-bdb7-48df-8f5d-20daeaa76a9c" + "cf426a29-e514-497f-acfb-44c65cd43061" ], "Cache-Control": [ "no-cache" @@ -3688,52 +3911,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "2effdf3a-bdb7-48df-8f5d-20daeaa76a9c" + "cf426a29-e514-497f-acfb-44c65cd43061" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222435Z:2effdf3a-bdb7-48df-8f5d-20daeaa76a9c" + "WESTEUROPE:20170427T100726Z:cf426a29-e514-497f-acfb-44c65cd43061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 08 Mar 2017 22:24:34 GMT" + "Thu, 27 Apr 2017 10:07:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/AzureCATExtensionHandler?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzMvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"forceUpdateTag\": \"636246122738963108\",\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": []\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL29zRGlzaz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1227" - ], "x-ms-client-request-id": [ - "b4bd14f9-b14a-4115-94ec-8ea1a9aed00d" + "d7a7cb35-145c-4c77-bd84-e5b056c302fe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636246122738963108\",\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/latest\"\r\n }\r\n },\r\n \"diskSizeGB\": 128,\r\n \"timeCreated\": \"2017-04-27T11:58:51.5381321+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\",\r\n \"name\": \"osDisk\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1016" + "943" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3744,17 +3961,14 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/e0db371c-e65f-4ff6-bb92-9556a3b640f4?api-version=2016-04-30-preview" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" ], "x-ms-request-id": [ - "e0db371c-e65f-4ff6-bb92-9556a3b640f4" + "c195f7d4-e66a-4bef-b561-662461d1f8cf" ], "Cache-Control": [ "no-cache" @@ -3763,41 +3977,431 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "54f6de66-81ab-40cc-a8b1-4e7709672959" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T100727Z:54f6de66-81ab-40cc-a8b1-4e7709672959" + ], + "Date": [ + "Thu, 27 Apr 2017 10:07:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL29zRGlzaz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a97f995-6355-4979-877e-15d7e776c63f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"osType\": \"Windows\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/latest\"\r\n }\r\n },\r\n \"diskSizeGB\": 128,\r\n \"timeCreated\": \"2017-04-27T11:58:51.5381321+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/osDisk\",\r\n \"name\": \"osDisk\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "943" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "77a86f6c-1e3d-4732-8300-a297114f71f6" + ], + "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": [ + "b093b279-65b1-4c6c-96df-1121db198367" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T100835Z:b093b279-65b1-4c6c-96df-1121db198367" + ], + "Date": [ + "Thu, 27 Apr 2017 10:08:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17f29035-67e4-47b5-8e59-2d53c1a47f75" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2017-04-27T11:58:51.5381321+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\",\r\n \"name\": \"testDataDisk1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "aeaab8f8-0d29-4ad7-aa7a-26b98f928c4d" + ], + "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": [ + "61b119ba-575c-4eca-82d3-e2cf9246c8ef" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T100727Z:61b119ba-575c-4eca-82d3-e2cf9246c8ef" + ], + "Date": [ + "Thu, 27 Apr 2017 10:07:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazE/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20d956cd-3109-4393-9e18-d1deca36db24" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2017-04-27T11:58:51.5381321+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk1\",\r\n \"name\": \"testDataDisk1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "c355791b-e2cb-4c8a-8426-66782a010286" + ], + "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": [ + "210219b1-98d5-413d-b503-fe281e40cd81" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T100835Z:210219b1-98d5-413d-b503-fe281e40cd81" + ], + "Date": [ + "Thu, 27 Apr 2017 10:08:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8571155-8b19-49d9-8b85-ee068604c6ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 11,\r\n \"timeCreated\": \"2017-04-27T11:58:51.5381321+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\",\r\n \"name\": \"testDataDisk2\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "03eb8a45-69a9-4b8a-9bb2-76e530252fa1" + ], + "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": [ - "63cc3c28-dada-497a-a835-1b761139ef24" + "06dfd3a0-e3b7-4570-8afa-2e468a39c771" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222437Z:63cc3c28-dada-497a-a835-1b761139ef24" + "WESTEUROPE:20170427T100727Z:06dfd3a0-e3b7-4570-8afa-2e468a39c771" ], "Date": [ - "Wed, 08 Mar 2017 22:24:36 GMT" + "Thu, 27 Apr 2017 10:07:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4dd2e39f-8a7b-4000-8954-ce1f95343096" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 11,\r\n \"timeCreated\": \"2017-04-27T11:58:51.5381321+02:00\",\r\n \"ownerId\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/disks/testDataDisk2\",\r\n \"name\": \"testDataDisk2\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" ], - "Connection": [ - "close" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "aa1a7a6c-94d7-4764-8641-70ff46d2e498_131376853158899589" + ], + "x-ms-request-id": [ + "5a2906f9-f370-4b3b-a91f-865cb647fa3b" + ], + "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": [ + "396d872b-fa3e-43ee-bd48-0c07350a3e48" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T100835Z:396d872b-fa3e-43ee-bd48-0c07350a3e48" + ], + "Date": [ + "Thu, 27 Apr 2017 10:08:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/AzureCATExtensionHandler?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzIvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"forceUpdateTag\": \"636288916455212695\",\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": []\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2013" + ], + "x-ms-client-request-id": [ + "f74657d8-4cb1-49ff-a810-be90274221a2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2046.0", + "OSName/Windows_10_Pro", + "OSVersion/6.3.15063", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288916455212695\",\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1388" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/ac1fb04d-6d48-4072-8a39-6ec542ae6d1b?api-version=2016-04-30-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" + ], + "x-ms-request-id": [ + "ac1fb04d-6d48-4072-8a39-6ec542ae6d1b" + ], + "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": [ + "b889326a-4b48-4e66-85dd-38a47deae8e3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20170427T100733Z:b889326a-4b48-4e66-85dd-38a47deae8e3" + ], + "Date": [ + "Thu, 27 Apr 2017 10:07:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/e0db371c-e65f-4ff6-bb92-9556a3b640f4?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTBkYjM3MWMtZTY1Zi00ZmY2LWJiOTItOTU1NmEzYjY0MGY0P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/ac1fb04d-6d48-4072-8a39-6ec542ae6d1b?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWMxZmIwNGQtNmQ0OC00MDcyLThhMzktNmVjNTQyYWU2ZDFiP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:24:35.3373249+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0db371c-e65f-4ff6-bb92-9556a3b640f4\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T12:07:29.132409+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ac1fb04d-6d48-4072-8a39-6ec542ae6d1b\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3812,10 +4416,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "f74e39af-1f86-4d0e-a23c-7ec2a2e37fca" + "6748722e-9075-49f7-930f-d69d0f7dd5f1" ], "Cache-Control": [ "no-cache" @@ -3825,37 +4429,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14962" ], "x-ms-correlation-request-id": [ - "6e39f36d-4b34-4a1d-808b-f727a5767e5d" + "75538a51-2dab-4057-9057-b2ca3ace4b98" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222508Z:6e39f36d-4b34-4a1d-808b-f727a5767e5d" + "WESTEUROPE:20170427T100804Z:75538a51-2dab-4057-9057-b2ca3ace4b98" ], "Date": [ - "Wed, 08 Mar 2017 22:25:07 GMT" + "Thu, 27 Apr 2017 10:08:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/e0db371c-e65f-4ff6-bb92-9556a3b640f4?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTBkYjM3MWMtZTY1Zi00ZmY2LWJiOTItOTU1NmEzYjY0MGY0P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/ac1fb04d-6d48-4072-8a39-6ec542ae6d1b?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWMxZmIwNGQtNmQ0OC00MDcyLThhMzktNmVjNTQyYWU2ZDFiP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:24:35.3373249+01:00\",\r\n \"endTime\": \"2017-03-08T23:25:18.8198789+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e0db371c-e65f-4ff6-bb92-9556a3b640f4\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T12:07:29.132409+02:00\",\r\n \"endTime\": \"2017-04-27T12:08:25.7403936+02:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ac1fb04d-6d48-4072-8a39-6ec542ae6d1b\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3870,10 +4474,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "b5b494d9-dfe1-471d-a73d-adcd49fb726f" + "d189e1b5-3ed5-4e49-9b68-91cb368f4cf1" ], "Cache-Control": [ "no-cache" @@ -3883,37 +4487,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14961" ], "x-ms-correlation-request-id": [ - "7830c29c-b5f4-4762-bc7d-7771ecd12dd6" + "1b116657-972a-4983-bba5-233bfeba6ca4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222538Z:7830c29c-b5f4-4762-bc7d-7771ecd12dd6" + "WESTEUROPE:20170427T100834Z:1b116657-972a-4983-bba5-233bfeba6ca4" ], "Date": [ - "Wed, 08 Mar 2017 22:25:37 GMT" + "Thu, 27 Apr 2017 10:08:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/AzureCATExtensionHandler?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzMvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/AzureCATExtensionHandler?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzIvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636246122738963108\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288916455212695\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1017" + "1389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3928,10 +4532,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "86fcf833-ac74-48f3-8bb6-247832805c32" + "a74ad928-4f8c-48e8-8613-ea04f973bbc9" ], "Cache-Control": [ "no-cache" @@ -3941,43 +4545,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14960" ], "x-ms-correlation-request-id": [ - "4440b7a2-d498-4d6d-bb16-3a8bca4e17d1" + "2b4102ff-740f-4ece-9e8a-86ae32f9f0a3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222538Z:4440b7a2-d498-4d6d-bb16-3a8bca4e17d1" + "WESTEUROPE:20170427T100834Z:2b4102ff-740f-4ece-9e8a-86ae32f9f0a3" ], "Date": [ - "Wed, 08 Mar 2017 22:25:37 GMT" + "Thu, 27 Apr 2017 10:08:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/AzureCATExtensionHandler?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzMvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/AzureCATExtensionHandler?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzIvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b95db96c-856c-41b1-8ef7-2da9684ffd92" + "507b46de-e3c9-4a21-a830-6d5b058d712a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636246122738963108\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"type\": \"AzureCATExtensionHandler\",\r\n \"typeHandlerVersion\": \"2.2\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 64\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"PremiumMD\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636288916455212695\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/AzureCATExtensionHandler\",\r\n \"name\": \"AzureCATExtensionHandler\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1017" + "1389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3992,10 +4596,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "961b0d61-d9d8-44b1-8cfd-888836786d7f" + "bc2c2b09-b601-4b07-b9eb-3d9e897c9577" ], "Cache-Control": [ "no-cache" @@ -4005,36 +4609,36 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14958" ], "x-ms-correlation-request-id": [ - "8d4e3e88-aa98-4220-b67e-9675c5aa1835" + "92c8dc2c-93c8-4fc4-928a-a2230faa571f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222539Z:8d4e3e88-aa98-4220-b67e-9675c5aa1835" + "WESTEUROPE:20170427T100834Z:92c8dc2c-93c8-4fc4-928a-a2230faa571f" ], "Date": [ - "Wed, 08 Mar 2017 22:25:38 GMT" + "Thu, 27 Apr 2017 10:08:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourceGroups/crptestps2133/providers/Microsoft.Compute/virtualMachines/vmcrptestps2133/extensions/AzureCATExtensionHandler?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIxMzMvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourceGroups/crptestps1632/providers/Microsoft.Compute/virtualMachines/vmcrptestps1632/extensions/AzureCATExtensionHandler?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczE2MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczE2MzIvZXh0ZW5zaW9ucy9BenVyZUNBVEV4dGVuc2lvbkhhbmRsZXI/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adb84109-f16f-4f5f-a3eb-0978d04c5f10" + "d0fab98a-1dd9-4a37-b7a9-d7bd978bfc24" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, @@ -4050,59 +4654,59 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/44fe86a2-a2b1-49c4-89ef-1541d176d72a?api-version=2016-04-30-preview" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/7f4f1e3a-fea3-4421-81cc-007181678725?api-version=2016-04-30-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "44fe86a2-a2b1-49c4-89ef-1541d176d72a" + "7f4f1e3a-fea3-4421-81cc-007181678725" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/44fe86a2-a2b1-49c4-89ef-1541d176d72a?monitor=true&api-version=2016-04-30-preview" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/7f4f1e3a-fea3-4421-81cc-007181678725?monitor=true&api-version=2016-04-30-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "83956589-0351-4b62-980c-16cec82b8d64" + "24b5bd99-947e-4b5e-a67f-916f1a149113" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222541Z:83956589-0351-4b62-980c-16cec82b8d64" + "WESTEUROPE:20170427T100836Z:24b5bd99-947e-4b5e-a67f-916f1a149113" ], "Date": [ - "Wed, 08 Mar 2017 22:25:41 GMT" + "Thu, 27 Apr 2017 10:08:36 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/44fe86a2-a2b1-49c4-89ef-1541d176d72a?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDRmZTg2YTItYTJiMS00OWM0LTg5ZWYtMTU0MWQxNzZkNzJhP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/7f4f1e3a-fea3-4421-81cc-007181678725?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2Y0ZjFlM2EtZmVhMy00NDIxLTgxY2MtMDA3MTgxNjc4NzI1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:25:39.6674068+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44fe86a2-a2b1-49c4-89ef-1541d176d72a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T12:08:36.589837+02:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7f4f1e3a-fea3-4421-81cc-007181678725\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4117,10 +4721,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "76b90e22-f7c1-4229-9146-4f9eda4eb71d" + "d4e1ed46-6876-4d35-9088-f4c4d2a6b2ab" ], "Cache-Control": [ "no-cache" @@ -4130,37 +4734,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14951" ], "x-ms-correlation-request-id": [ - "b1a4ee45-7bd2-4024-b668-d78b0009705f" + "58ac955f-8a09-48fa-8a63-b721f3ca3905" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222611Z:b1a4ee45-7bd2-4024-b668-d78b0009705f" + "WESTEUROPE:20170427T100906Z:58ac955f-8a09-48fa-8a63-b721f3ca3905" ], "Date": [ - "Wed, 08 Mar 2017 22:26:11 GMT" + "Thu, 27 Apr 2017 10:09:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/providers/Microsoft.Compute/locations/eastus/operations/44fe86a2-a2b1-49c4-89ef-1541d176d72a?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDRmZTg2YTItYTJiMS00OWM0LTg5ZWYtMTU0MWQxNzZkNzJhP2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/providers/Microsoft.Compute/locations/eastus/operations/7f4f1e3a-fea3-4421-81cc-007181678725?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2Y0ZjFlM2EtZmVhMy00NDIxLTgxY2MtMDA3MTgxNjc4NzI1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.1586.0", + "FxVersion/4.7.2046.0", "OSName/Windows_10_Pro", - "OSVersion/6.3.14393", + "OSVersion/6.3.15063", "Microsoft.Azure.Management.Compute.ComputeManagementClient/14.0.0-prerelease" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-08T23:25:39.6674068+01:00\",\r\n \"endTime\": \"2017-03-08T23:26:34.1237784+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"44fe86a2-a2b1-49c4-89ef-1541d176d72a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-04-27T12:08:36.589837+02:00\",\r\n \"endTime\": \"2017-04-27T12:09:35.0290686+02:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7f4f1e3a-fea3-4421-81cc-007181678725\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4175,10 +4779,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b31f19cb-41d7-45be-a82c-a265e548e55c_131294333982017019" + "f657ebf8-0028-4e8d-97f3-47f8ce592f6d_131377531166475975" ], "x-ms-request-id": [ - "79d67df5-40bc-4a7f-8861-7c5186112ea7" + "37ac066b-ca60-429a-8a1f-54f4185b753f" ], "Cache-Control": [ "no-cache" @@ -4188,26 +4792,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14950" ], "x-ms-correlation-request-id": [ - "fb689d80-202a-403e-bd2e-99712c6ba62a" + "fccb40a6-6744-4094-9786-8bb47532c19c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222642Z:fb689d80-202a-403e-bd2e-99712c6ba62a" + "WESTEUROPE:20170427T100936Z:fccb40a6-6744-4094-9786-8bb47532c19c" ], "Date": [ - "Wed, 08 Mar 2017 22:26:41 GMT" - ], - "Connection": [ - "close" + "Thu, 27 Apr 2017 10:09:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/resourcegroups/crptestps2133?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIxMzM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/resourcegroups/crptestps1632?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczE2MzI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4233,13 +4834,13 @@ "1199" ], "x-ms-request-id": [ - "78259fb8-9e67-4f93-ada9-4cc63db88f27" + "dbce911a-31fb-452a-bac9-9812c7a51d09" ], "x-ms-correlation-request-id": [ - "78259fb8-9e67-4f93-ada9-4cc63db88f27" + "dbce911a-31fb-452a-bac9-9812c7a51d09" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222645Z:78259fb8-9e67-4f93-ada9-4cc63db88f27" + "WESTEUROPE:20170427T100938Z:dbce911a-31fb-452a-bac9-9812c7a51d09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4248,17 +4849,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:26:45 GMT" + "Thu, 27 Apr 2017 10:09:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4284,16 +4885,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14982" ], "x-ms-request-id": [ - "ae48cef7-d99c-40a6-bab9-e28c9778ed59" + "61091e40-359a-4954-9be6-e31a3814e7ae" ], "x-ms-correlation-request-id": [ - "ae48cef7-d99c-40a6-bab9-e28c9778ed59" + "61091e40-359a-4954-9be6-e31a3814e7ae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222646Z:ae48cef7-d99c-40a6-bab9-e28c9778ed59" + "WESTEUROPE:20170427T100939Z:61091e40-359a-4954-9be6-e31a3814e7ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4302,17 +4903,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:26:45 GMT" + "Thu, 27 Apr 2017 10:09:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4338,16 +4939,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14981" ], "x-ms-request-id": [ - "82780fcd-2567-4f2d-b378-8300aed4e2ed" + "1259b1e9-9d26-4bff-b274-fc159223e69a" ], "x-ms-correlation-request-id": [ - "82780fcd-2567-4f2d-b378-8300aed4e2ed" + "1259b1e9-9d26-4bff-b274-fc159223e69a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222701Z:82780fcd-2567-4f2d-b378-8300aed4e2ed" + "WESTEUROPE:20170427T100954Z:1259b1e9-9d26-4bff-b274-fc159223e69a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4356,17 +4957,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:27:00 GMT" + "Thu, 27 Apr 2017 10:09:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4392,16 +4993,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14981" ], "x-ms-request-id": [ - "526a4cf2-427e-4d0f-a593-a966a1aeff97" + "99adb01d-7d35-4941-828b-6c195ca80895" ], "x-ms-correlation-request-id": [ - "526a4cf2-427e-4d0f-a593-a966a1aeff97" + "99adb01d-7d35-4941-828b-6c195ca80895" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222716Z:526a4cf2-427e-4d0f-a593-a966a1aeff97" + "WESTEUROPE:20170427T101009Z:99adb01d-7d35-4941-828b-6c195ca80895" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4410,17 +5011,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:27:16 GMT" + "Thu, 27 Apr 2017 10:10:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4446,16 +5047,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14980" ], "x-ms-request-id": [ - "a48a9a00-0527-4bee-84cf-58b94666b7c3" + "0fae6ae9-cc11-4efe-a562-9b49d03577e6" ], "x-ms-correlation-request-id": [ - "a48a9a00-0527-4bee-84cf-58b94666b7c3" + "0fae6ae9-cc11-4efe-a562-9b49d03577e6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222731Z:a48a9a00-0527-4bee-84cf-58b94666b7c3" + "WESTEUROPE:20170427T101024Z:0fae6ae9-cc11-4efe-a562-9b49d03577e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4464,17 +5065,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:27:31 GMT" + "Thu, 27 Apr 2017 10:10:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4500,16 +5101,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14979" ], "x-ms-request-id": [ - "b04a18ab-d665-4823-968e-fb02758f7807" + "4adde611-5e0c-477f-86b6-aec922512f1a" ], "x-ms-correlation-request-id": [ - "b04a18ab-d665-4823-968e-fb02758f7807" + "4adde611-5e0c-477f-86b6-aec922512f1a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222747Z:b04a18ab-d665-4823-968e-fb02758f7807" + "WESTEUROPE:20170427T101040Z:4adde611-5e0c-477f-86b6-aec922512f1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4518,17 +5119,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:27:46 GMT" + "Thu, 27 Apr 2017 10:10:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4554,16 +5155,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14978" ], "x-ms-request-id": [ - "3f366700-9910-4bd1-86f6-81a1a27eba81" + "4b496a0b-6fb3-4ec7-a20c-6d701b4bb547" ], "x-ms-correlation-request-id": [ - "3f366700-9910-4bd1-86f6-81a1a27eba81" + "4b496a0b-6fb3-4ec7-a20c-6d701b4bb547" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222802Z:3f366700-9910-4bd1-86f6-81a1a27eba81" + "WESTEUROPE:20170427T101055Z:4b496a0b-6fb3-4ec7-a20c-6d701b4bb547" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4572,17 +5173,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:28:02 GMT" + "Thu, 27 Apr 2017 10:10:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4608,16 +5209,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14977" ], "x-ms-request-id": [ - "7592719d-8839-457e-abc3-19a65770a5dc" + "485ef405-a29f-4aff-8814-7d2ea300b903" ], "x-ms-correlation-request-id": [ - "7592719d-8839-457e-abc3-19a65770a5dc" + "485ef405-a29f-4aff-8814-7d2ea300b903" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222817Z:7592719d-8839-457e-abc3-19a65770a5dc" + "WESTEUROPE:20170427T101110Z:485ef405-a29f-4aff-8814-7d2ea300b903" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4626,17 +5227,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:28:17 GMT" + "Thu, 27 Apr 2017 10:11:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4662,16 +5263,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14976" ], "x-ms-request-id": [ - "ad6c0b48-a6bc-4838-92c5-4d30ada99f01" + "c5fa7487-ee15-42b4-ad5b-9937f467a4b9" ], "x-ms-correlation-request-id": [ - "ad6c0b48-a6bc-4838-92c5-4d30ada99f01" + "c5fa7487-ee15-42b4-ad5b-9937f467a4b9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222833Z:ad6c0b48-a6bc-4838-92c5-4d30ada99f01" + "WESTEUROPE:20170427T101125Z:c5fa7487-ee15-42b4-ad5b-9937f467a4b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4680,17 +5281,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:28:32 GMT" + "Thu, 27 Apr 2017 10:11:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4716,16 +5317,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14975" ], "x-ms-request-id": [ - "d9ff532e-8063-4ecf-9fc2-6d300a0b561a" + "9acf85fb-a04e-4451-9afb-ea0459f094e6" ], "x-ms-correlation-request-id": [ - "d9ff532e-8063-4ecf-9fc2-6d300a0b561a" + "9acf85fb-a04e-4451-9afb-ea0459f094e6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222848Z:d9ff532e-8063-4ecf-9fc2-6d300a0b561a" + "WESTEUROPE:20170427T101140Z:9acf85fb-a04e-4451-9afb-ea0459f094e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4734,17 +5335,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:28:47 GMT" + "Thu, 27 Apr 2017 10:11:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4770,16 +5371,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14974" ], "x-ms-request-id": [ - "423a5d7d-086c-4f59-8bcc-dbc51c867520" + "c6092aa5-7dae-4903-9dd7-096482ceab8b" ], "x-ms-correlation-request-id": [ - "423a5d7d-086c-4f59-8bcc-dbc51c867520" + "c6092aa5-7dae-4903-9dd7-096482ceab8b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222903Z:423a5d7d-086c-4f59-8bcc-dbc51c867520" + "WESTEUROPE:20170427T101156Z:c6092aa5-7dae-4903-9dd7-096482ceab8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4788,17 +5389,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:29:02 GMT" + "Thu, 27 Apr 2017 10:11:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4824,16 +5425,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14973" ], "x-ms-request-id": [ - "f9f6c51b-b2da-493b-b29a-3f368cab6b55" + "a514cdd1-e4a6-4bac-9f2a-41b583a11dd1" ], "x-ms-correlation-request-id": [ - "f9f6c51b-b2da-493b-b29a-3f368cab6b55" + "a514cdd1-e4a6-4bac-9f2a-41b583a11dd1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222919Z:f9f6c51b-b2da-493b-b29a-3f368cab6b55" + "WESTEUROPE:20170427T101211Z:a514cdd1-e4a6-4bac-9f2a-41b583a11dd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4842,17 +5443,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:29:18 GMT" + "Thu, 27 Apr 2017 10:12:11 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4878,16 +5479,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14972" ], "x-ms-request-id": [ - "63bc1a8c-42bc-4cd9-8e95-9fd182d0a032" + "e9dba68b-b370-4d37-97fa-2f104b248acd" ], "x-ms-correlation-request-id": [ - "63bc1a8c-42bc-4cd9-8e95-9fd182d0a032" + "e9dba68b-b370-4d37-97fa-2f104b248acd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222934Z:63bc1a8c-42bc-4cd9-8e95-9fd182d0a032" + "WESTEUROPE:20170427T101227Z:e9dba68b-b370-4d37-97fa-2f104b248acd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4896,17 +5497,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:29:33 GMT" + "Thu, 27 Apr 2017 10:12:26 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4932,16 +5533,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14971" ], "x-ms-request-id": [ - "0eaba19e-fe01-4fdb-81f6-f48b8fbe17e1" + "fdf1158f-b5d7-47e0-89ff-bb4b7d9f4fb9" ], "x-ms-correlation-request-id": [ - "0eaba19e-fe01-4fdb-81f6-f48b8fbe17e1" + "fdf1158f-b5d7-47e0-89ff-bb4b7d9f4fb9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T222949Z:0eaba19e-fe01-4fdb-81f6-f48b8fbe17e1" + "WESTEUROPE:20170427T101242Z:fdf1158f-b5d7-47e0-89ff-bb4b7d9f4fb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4950,17 +5551,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:29:48 GMT" + "Thu, 27 Apr 2017 10:12:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4986,16 +5587,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14970" ], "x-ms-request-id": [ - "93f58ac6-f733-4938-ab45-d30d0be103c0" + "5de365dc-9699-4a8b-ab21-943a68cfffae" ], "x-ms-correlation-request-id": [ - "93f58ac6-f733-4938-ab45-d30d0be103c0" + "5de365dc-9699-4a8b-ab21-943a68cfffae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223005Z:93f58ac6-f733-4938-ab45-d30d0be103c0" + "WESTEUROPE:20170427T101257Z:5de365dc-9699-4a8b-ab21-943a68cfffae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5004,17 +5605,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:30:04 GMT" + "Thu, 27 Apr 2017 10:12:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5040,16 +5641,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14969" ], "x-ms-request-id": [ - "12234d17-d028-4b4e-afa8-fcab592a7170" + "e400dbf4-dbca-4aba-b484-86eba27195b2" ], "x-ms-correlation-request-id": [ - "12234d17-d028-4b4e-afa8-fcab592a7170" + "e400dbf4-dbca-4aba-b484-86eba27195b2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223020Z:12234d17-d028-4b4e-afa8-fcab592a7170" + "WESTEUROPE:20170427T101312Z:e400dbf4-dbca-4aba-b484-86eba27195b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5058,17 +5659,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:30:19 GMT" + "Thu, 27 Apr 2017 10:13:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5094,16 +5695,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14968" ], "x-ms-request-id": [ - "221c78ef-f13a-42cf-b4d0-18d1a92bf2d5" + "c8b43869-86a8-4016-8d83-66f980a21a91" ], "x-ms-correlation-request-id": [ - "221c78ef-f13a-42cf-b4d0-18d1a92bf2d5" + "c8b43869-86a8-4016-8d83-66f980a21a91" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223035Z:221c78ef-f13a-42cf-b4d0-18d1a92bf2d5" + "WESTEUROPE:20170427T101328Z:c8b43869-86a8-4016-8d83-66f980a21a91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5112,17 +5713,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:30:35 GMT" + "Thu, 27 Apr 2017 10:13:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5148,16 +5749,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14967" ], "x-ms-request-id": [ - "6d68420f-33d8-44c3-be9b-aa1b43bb3413" + "908e80eb-96a2-4431-bf65-ff001d23e406" ], "x-ms-correlation-request-id": [ - "6d68420f-33d8-44c3-be9b-aa1b43bb3413" + "908e80eb-96a2-4431-bf65-ff001d23e406" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223051Z:6d68420f-33d8-44c3-be9b-aa1b43bb3413" + "WESTEUROPE:20170427T101343Z:908e80eb-96a2-4431-bf65-ff001d23e406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5166,17 +5767,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:30:50 GMT" + "Thu, 27 Apr 2017 10:13:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5202,16 +5803,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14966" ], "x-ms-request-id": [ - "ec283536-b2c4-4f81-9611-ed6f992f8706" + "5fcacc48-deec-4f37-8d48-23faf06b021e" ], "x-ms-correlation-request-id": [ - "ec283536-b2c4-4f81-9611-ed6f992f8706" + "5fcacc48-deec-4f37-8d48-23faf06b021e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223107Z:ec283536-b2c4-4f81-9611-ed6f992f8706" + "WESTEUROPE:20170427T101359Z:5fcacc48-deec-4f37-8d48-23faf06b021e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5220,17 +5821,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:31:07 GMT" + "Thu, 27 Apr 2017 10:13:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5256,16 +5857,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14965" ], "x-ms-request-id": [ - "eb1c7a1b-b1e4-4ba2-b82e-1eb3cc7e267f" + "79d3d376-8301-4a53-acf3-1cef7cacca2d" ], "x-ms-correlation-request-id": [ - "eb1c7a1b-b1e4-4ba2-b82e-1eb3cc7e267f" + "79d3d376-8301-4a53-acf3-1cef7cacca2d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223122Z:eb1c7a1b-b1e4-4ba2-b82e-1eb3cc7e267f" + "WESTEUROPE:20170427T101414Z:79d3d376-8301-4a53-acf3-1cef7cacca2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5274,17 +5875,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:31:21 GMT" + "Thu, 27 Apr 2017 10:14:14 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5310,16 +5911,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14964" ], "x-ms-request-id": [ - "eea5c473-12fa-4e08-bb6c-6c2748f539bf" + "f7c6b649-4298-4f49-b0af-998d20338766" ], "x-ms-correlation-request-id": [ - "eea5c473-12fa-4e08-bb6c-6c2748f539bf" + "f7c6b649-4298-4f49-b0af-998d20338766" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223137Z:eea5c473-12fa-4e08-bb6c-6c2748f539bf" + "WESTEUROPE:20170427T101429Z:f7c6b649-4298-4f49-b0af-998d20338766" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5328,17 +5929,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:31:37 GMT" + "Thu, 27 Apr 2017 10:14:29 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5364,16 +5965,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14963" ], "x-ms-request-id": [ - "73d177a6-49af-4aa4-ad2a-3e9afd414976" + "625ecce7-a174-4104-b733-d7ea65ed4558" ], "x-ms-correlation-request-id": [ - "73d177a6-49af-4aa4-ad2a-3e9afd414976" + "625ecce7-a174-4104-b733-d7ea65ed4558" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223153Z:73d177a6-49af-4aa4-ad2a-3e9afd414976" + "WESTEUROPE:20170427T101444Z:625ecce7-a174-4104-b733-d7ea65ed4558" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5382,17 +5983,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:31:52 GMT" + "Thu, 27 Apr 2017 10:14:44 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5418,16 +6019,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14962" ], "x-ms-request-id": [ - "bd600529-0f8b-4f77-b22b-8d9e11fc728b" + "b80129a3-166d-41f7-9101-f2ee985306a4" ], "x-ms-correlation-request-id": [ - "bd600529-0f8b-4f77-b22b-8d9e11fc728b" + "b80129a3-166d-41f7-9101-f2ee985306a4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223208Z:bd600529-0f8b-4f77-b22b-8d9e11fc728b" + "WESTEUROPE:20170427T101500Z:b80129a3-166d-41f7-9101-f2ee985306a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5436,17 +6037,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:32:07 GMT" + "Thu, 27 Apr 2017 10:14:59 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5472,16 +6073,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14961" ], "x-ms-request-id": [ - "582ab1a2-4f1b-4a6a-a113-d19a0409d2a5" + "4345f13c-6feb-4b53-994a-6cbcc25fccf1" ], "x-ms-correlation-request-id": [ - "582ab1a2-4f1b-4a6a-a113-d19a0409d2a5" + "4345f13c-6feb-4b53-994a-6cbcc25fccf1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223223Z:582ab1a2-4f1b-4a6a-a113-d19a0409d2a5" + "WESTEUROPE:20170427T101515Z:4345f13c-6feb-4b53-994a-6cbcc25fccf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5490,17 +6091,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:32:23 GMT" + "Thu, 27 Apr 2017 10:15:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5526,16 +6127,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14960" ], "x-ms-request-id": [ - "6ac9740d-8ec7-423d-b73e-549e69890756" + "4dd79882-715d-4323-bbc1-ec11c99e932f" ], "x-ms-correlation-request-id": [ - "6ac9740d-8ec7-423d-b73e-549e69890756" + "4dd79882-715d-4323-bbc1-ec11c99e932f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223239Z:6ac9740d-8ec7-423d-b73e-549e69890756" + "WESTEUROPE:20170427T101530Z:4dd79882-715d-4323-bbc1-ec11c99e932f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5544,17 +6145,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:32:38 GMT" + "Thu, 27 Apr 2017 10:15:30 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5580,16 +6181,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14959" ], "x-ms-request-id": [ - "6436ea65-b390-4162-b27c-14b718d4ed55" + "16299f8e-232b-4176-8f80-aaa64fd59e02" ], "x-ms-correlation-request-id": [ - "6436ea65-b390-4162-b27c-14b718d4ed55" + "16299f8e-232b-4176-8f80-aaa64fd59e02" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223254Z:6436ea65-b390-4162-b27c-14b718d4ed55" + "WESTEUROPE:20170427T101549Z:16299f8e-232b-4176-8f80-aaa64fd59e02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5598,17 +6199,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:32:53 GMT" + "Thu, 27 Apr 2017 10:15:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5634,16 +6235,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14958" ], "x-ms-request-id": [ - "0d94e4c4-89aa-435d-acd6-ba1acee832ff" + "9279e73d-ad51-4f9c-9e8c-2b4e33adfd06" ], "x-ms-correlation-request-id": [ - "0d94e4c4-89aa-435d-acd6-ba1acee832ff" + "9279e73d-ad51-4f9c-9e8c-2b4e33adfd06" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223309Z:0d94e4c4-89aa-435d-acd6-ba1acee832ff" + "WESTEUROPE:20170427T101604Z:9279e73d-ad51-4f9c-9e8c-2b4e33adfd06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5652,17 +6253,17 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:33:09 GMT" + "Thu, 27 Apr 2017 10:16:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" + "https://management.azure.com/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/92c80358-9889-4faf-b8ee-93e68e6a6413/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMTMzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTJjODAzNTgtOTg4OS00ZmFmLWI4ZWUtOTNlNjhlNmE2NDEzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TVRNekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/7d42757b-9459-4cb8-9b0e-3f44f4373cf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxNjMyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2Q0Mjc1N2ItOTQ1OS00Y2I4LTliMGUtM2Y0NGY0MzczY2Y1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TmpNeUxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5685,16 +6286,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14957" ], "x-ms-request-id": [ - "a6757966-8037-4c49-9381-ce45d190d88e" + "3e69888d-0a9a-434e-961f-4163e4c0a0f8" ], "x-ms-correlation-request-id": [ - "a6757966-8037-4c49-9381-ce45d190d88e" + "3e69888d-0a9a-434e-961f-4163e4c0a0f8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170308T223324Z:a6757966-8037-4c49-9381-ce45d190d88e" + "WESTEUROPE:20170427T101619Z:3e69888d-0a9a-434e-961f-4163e4c0a0f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5703,7 +6304,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 22:33:24 GMT" + "Thu, 27 Apr 2017 10:16:19 GMT" ] }, "StatusCode": 200 @@ -5711,11 +6312,10 @@ ], "Names": { "Test-AEMExtensionAdvancedWindowsMD": [ - "crptestps2133" + "crptestps1632" ] }, "Variables": { - "SubscriptionId": "92c80358-9889-4faf-b8ee-93e68e6a6413" + "SubscriptionId": "7d42757b-9459-4cb8-9b0e-3f44f4373cf5" } -} - +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs index 3b75816420d0..f85a344c8a8e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMExtensionConstants.cs @@ -40,6 +40,7 @@ public static class AEMExtensionConstants public const string DISK_TYPE_STANDARD = "Standard"; public const string DISK_TYPE_PREMIUM = "Premium"; + public const string DISK_TYPE_PREMIUM_MD = "PremiumMD"; public const string WadTableName = "WADPerformanceCountersTable"; public const string AzureEndpoint = "core.windows.net"; public const int ContentAgeInMinutes = 5; diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs index a410d7efab54..5af34b0ca356 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs @@ -97,6 +97,18 @@ internal string GetResourceGroupFromId(string id) return result.Groups[2].Value; } + internal string GetResourceNameFromId(string id) + { + var matcher = new Regex("/subscriptions/([^/]+)/resourceGroups/([^/]+)/providers/([^/]+)/([^/]+)/([^/]+)(/\\w+)?"); + var result = matcher.Match(id); + if (!result.Success || result.Groups == null || result.Groups.Count < 3) + { + throw new InvalidOperationException(string.Format("Cannot find resource group name and storage account name from resource identity {0}", id)); + } + + return result.Groups[5].Value; + } + internal bool IsPremiumStorageAccount(string accountName) { return IsPremiumStorageAccount(this.GetStorageAccountFromCache(accountName)); @@ -104,6 +116,11 @@ internal bool IsPremiumStorageAccount(string accountName) internal int? GetDiskSizeGbFromBlobUri(string sBlobUri) { + if (String.IsNullOrEmpty(sBlobUri)) + { + return null; + } + var blobMatch = Regex.Match(sBlobUri, "https?://(\\S*?)\\..*?/(.*)"); if (!blobMatch.Success) { @@ -321,7 +338,7 @@ internal bool IsPremiumStorageAccount(StorageAccount account) { if (account.AccountType.HasValue) { - return (account.AccountType.Value.ToString().StartsWith("Premium")); + return (account.AccountType.Value == AccountType.PremiumLRS); } WriteError("No AccountType for storage account {0} found", account.Name); @@ -330,19 +347,19 @@ internal bool IsPremiumStorageAccount(StorageAccount account) internal AzureSLA GetDiskSLA(OSDisk osdisk) { - return this.GetDiskSLA(osdisk.DiskSizeGB, osdisk.Vhd.Uri); + return this.GetDiskSLA(osdisk.DiskSizeGB, osdisk.Vhd); } internal AzureSLA GetDiskSLA(DataDisk datadisk) { - return this.GetDiskSLA(datadisk.DiskSizeGB, datadisk.Vhd.Uri); + return this.GetDiskSLA(datadisk.DiskSizeGB, datadisk.Vhd); } - internal AzureSLA GetDiskSLA(int? diskSize, string vhdUri) + internal AzureSLA GetDiskSLA(int? diskSize, VirtualHardDisk vhd) { - if (!diskSize.HasValue) + if (!diskSize.HasValue && vhd != null) { - diskSize = this.GetDiskSizeGbFromBlobUri(vhdUri); + diskSize = this.GetDiskSizeGbFromBlobUri(vhd.Uri); } if (!diskSize.HasValue) { @@ -363,7 +380,7 @@ internal AzureSLA GetDiskSLA(int? diskSize, string vhdUri) sla.IOPS = 2300; sla.TP = 150; } - else if (diskSize > 0 && diskSize < 1025) + else if (diskSize > 0 && diskSize < 1024) { // P30 sla.IOPS = 5000; @@ -812,4 +829,4 @@ internal bool CheckDiagnosticsTable(string storageAccountName, string resId, str return tableExists; } } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs index 38e5a7449dbf..3a6050c8a844 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs @@ -209,7 +209,20 @@ public override void ExecuteCmdlet() } else { - this._Helper.WriteWarning("[WARN] Managed Disks are not yet supported. Extension will be installed but no disk metrics will be available."); + var osDiskMD = ComputeClient.ComputeManagementClient.Disks.Get(this._Helper.GetResourceGroupFromId(osdisk.ManagedDisk.Id), + this._Helper.GetResourceNameFromId(osdisk.ManagedDisk.Id)); + if (osDiskMD.AccountType == StorageAccountTypes.PremiumLRS) + { + WriteVerbose("OS Disk Storage Account is a premium account - adding SLAs for OS disk"); + var sla = this._Helper.GetDiskSLA(osDiskMD.DiskSizeGB, null); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "osdisk.type", Value = AEMExtensionConstants.DISK_TYPE_PREMIUM_MD }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "osdisk.sla.throughput", Value = sla.TP }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "osdisk.sla.iops", Value = sla.IOPS }); + } + else + { + this._Helper.WriteWarning("[WARN] Standard Managed Disks are not supported. Extension will be installed but no disk metrics will be available."); + } } // Get Storage accounts from disks @@ -218,7 +231,23 @@ public override void ExecuteCmdlet() { if (disk.ManagedDisk != null) { - this._Helper.WriteWarning("[WARN] Managed Disks are not yet supported. Extension will be installed but no disk metrics will be available."); + var diskMD = ComputeClient.ComputeManagementClient.Disks.Get(this._Helper.GetResourceGroupFromId(disk.ManagedDisk.Id), + this._Helper.GetResourceNameFromId(disk.ManagedDisk.Id)); + + if (diskMD.AccountType == StorageAccountTypes.PremiumLRS) + { + this._Helper.WriteVerbose("Data Disk {0} is a Premium Managed Disk - adding SLAs for disk", diskNumber.ToString()); + var sla = this._Helper.GetDiskSLA(diskMD.DiskSizeGB, null); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.type." + diskNumber, Value = AEMExtensionConstants.DISK_TYPE_PREMIUM_MD }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.sla.throughput." + diskNumber, Value = sla.TP }); + sapmonPublicConfig.Add(new KeyValuePair() { Key = "disk.sla.iops." + diskNumber, Value = sla.IOPS }); + this._Helper.WriteVerbose("Done - Data Disk {0} is a Premium Managed Disk - adding SLAs for disk", diskNumber.ToString()); + } + else + { + this._Helper.WriteWarning("[WARN] Standard Managed Disks are not supported. Extension will be installed but no disk metrics will be available."); + + } continue; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs index 49c7fb8400dc..6f8ad3f62a1a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/TestAzureRmVMAEMExtension.cs @@ -190,17 +190,12 @@ public override void ExecuteCmdlet() osaccountName = accountName; accounts.Add(accountName); } - else - { - this._Helper.WriteWarning("[WARN] Managed Disks are not yet supported. Extension will be installed but no disk metrics will be available."); - } var dataDisks = selectedVM.StorageProfile.DataDisks; foreach (var disk in dataDisks) { if (disk.ManagedDisk != null) - { - this._Helper.WriteWarning("[WARN] Managed Disks are not yet supported. Extension will be installed but no disk metrics will be available."); + { continue; } var accountName = this._Helper.GetStorageAccountFromUri(disk.Vhd.Uri); @@ -268,6 +263,10 @@ public override void ExecuteCmdlet() this._Helper.WriteHost("OK ", ConsoleColor.Green); } } + if (accounts.Count == 0) + { + metricsResult.Result = true; + } } else { @@ -355,9 +354,23 @@ public override void ExecuteCmdlet() this._Helper.CheckMonitoringProperty("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS Disk SLA IOPS", "osdisk.sla.throughput", sapmonPublicConfig, sla.TP, aemConfigResult); this._Helper.CheckMonitoringProperty("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS Disk SLA Throughput", "osdisk.sla.iops", sapmonPublicConfig, sla.IOPS, aemConfigResult); - } else + } + else { - this._Helper.WriteWarning("[WARN] Managed Disks are not yet supported. Extension will be installed but no disk metrics will be available."); + var osDiskMD = ComputeClient.ComputeManagementClient.Disks.Get(this._Helper.GetResourceGroupFromId(osdisk.ManagedDisk.Id), + this._Helper.GetResourceNameFromId(osdisk.ManagedDisk.Id)); + if (osDiskMD.AccountType == StorageAccountTypes.PremiumLRS) + { + var sla = this._Helper.GetDiskSLA(osDiskMD.DiskSizeGB, null); + + this._Helper.CheckMonitoringProperty("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS Disk Type", "osdisk.type", sapmonPublicConfig, AEMExtensionConstants.DISK_TYPE_PREMIUM_MD, aemConfigResult); + this._Helper.CheckMonitoringProperty("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS Disk SLA IOPS", "osdisk.sla.throughput", sapmonPublicConfig, sla.TP, aemConfigResult); + this._Helper.CheckMonitoringProperty("Azure Enhanced Monitoring Extension for SAP public configuration check: VM OS Disk SLA Throughput", "osdisk.sla.iops", sapmonPublicConfig, sla.IOPS, aemConfigResult); + } + else + { + this._Helper.WriteWarning("[WARN] Standard Managed Disks are not supported."); + } } if (osdisk.ManagedDisk == null) @@ -371,7 +384,22 @@ public override void ExecuteCmdlet() { if (disk.ManagedDisk != null) { - this._Helper.WriteWarning("[WARN] Managed Disks are not yet supported. Extension will be installed but no disk metrics will be available."); + var diskMD = ComputeClient.ComputeManagementClient.Disks.Get(this._Helper.GetResourceGroupFromId(disk.ManagedDisk.Id), + this._Helper.GetResourceNameFromId(disk.ManagedDisk.Id)); + + if (diskMD.AccountType == StorageAccountTypes.PremiumLRS) + { + var sla = this._Helper.GetDiskSLA(diskMD.DiskSizeGB, null); + + this._Helper.CheckMonitoringProperty("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " Type", "disk.type." + diskNumber, sapmonPublicConfig, AEMExtensionConstants.DISK_TYPE_PREMIUM_MD, aemConfigResult); + this._Helper.CheckMonitoringProperty("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " SLA IOPS", "disk.sla.throughput." + diskNumber, sapmonPublicConfig, sla.TP, aemConfigResult); + this._Helper.CheckMonitoringProperty("Azure Enhanced Monitoring Extension for SAP public configuration check: VM Data Disk " + diskNumber + " SLA Throughput", "disk.sla.iops." + diskNumber, sapmonPublicConfig, sla.IOPS, aemConfigResult); + } + else + { + this._Helper.WriteWarning("[WARN] Standard Managed Disks are not supported."); + + } continue; } @@ -566,4 +594,3 @@ public override void ExecuteCmdlet() } } } -